创建 IEnumerable>> C# 的对象?
出于测试目的,我需要使用以下示例键值对创建一个 IEnumerable
对象:
Key = Name | Value : John
Key = City | Value : NY
最简单的方法是什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
任何:
或
或:
any of:
or
or:
Dictionary
实现IEnumerable>
。Dictionary<string, string>
implementsIEnumerable<KeyValuePair<string,string>>
.这是你的意思吗,还是还有更多的意思?
Is that what you mean, or is there more to it?
您可以简单地将
Dictionary
分配给IEnumerable>
如果这不起作用,您可以尝试 -
You can simply assign a
Dictionary<K, V>
toIEnumerable<KeyValuePair<K, V>>
If that does not work you can try -