C# - 字典<键 ,值>列出 键>
我想将我的 Dictionary
映射到 List
,其中 Customer
有两个属性 Id
和名称
。现在我想将字典的整数 Key
映射到 List
属性,将字典的 Value
映射到迭代列出
。
同样需要帮助。
I want to map my Dictionary<int, string>
to a List<Customer>
where Customer
has two properties Id
and Name
. Now I want to map my integer Key
of the dictionary to the List<Customer>[i].Key
property and Value
of the dictionary to List<Customer>[i].Name
iteratively.
Need help for the same.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您还可以使用适当的
Customer
构造函数(如果可用)来代替示例属性设置器语法。You can also use an appropriate
Customer
constructor (if available) instead of the example property setter syntax.你可以这样做:
You could do something like:
给定
myDictionary
已填充,并且myList
是目标列表:Given
myDictionary
is populated andmyList
ist the target list: