转换 IEnumerable>>列表<字典>
var a = GetIEnumerableDictionary();
a
是 IEnumerable
。
如何将 a 转换为 List
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
a.ToList()
应该可以解决问题。ToList()
扩展方法位于System.Linq
命名空间中。如果 Linq 不可用,则List
构造函数采用IEnumerable
作为参数,正如 Jalal 已在此页面上回答的那样。a.ToList()
should do the trick.The
ToList()
extension method lives in theSystem.Linq
namespace. If Linq is not available, theList<T>
constructor takes anIEnumerable<T>
as a parameter, as Jalal has already answered on this page.您可以使用 List
IEnumerable
构造函数,因此:You can use the List
IEnumerable<T>
constructor, so: