本文介绍了自IEnumerable转换到列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想从转换IEnumerable的<联系与GT;
到列表<联系与GT;
。我怎样才能做到这一点?
I want to convert from IEnumerable<Contact>
to List<Contact>
. How can I do this?
推荐答案
您可以做到这一点很简单地使用LINQ。
You can do this very simply using LINQ.
确认这是用在你的C#文件的顶部:
Make sure this using is at the top of your C# file:
using System.Linq;
然后使用的扩展方法。
Then use the ToList
extension method.
例如:
IEnumerable<int> enumerable = Enumerable.Range(1, 300);
List<int> asList = enumerable.ToList();
这篇关于自IEnumerable转换到列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!