开发者

Convert IEnumerable<Dictionary<int, string>> to List<Dictionary<int, string>>

var a = GetIEnumerableDictionary();

a is IEnumerable<Dictionary<int, string>>. How do I co开发者_StackOverflownvert a to List<Dictionary<int, string>> ?


a.ToList() should do the trick.

The ToList() extension method lives in the System.Linq namespace. If Linq is not available, the List<T> constructor takes an IEnumerable<T> as a parameter, as Jalal has already answered on this page.


You can use the List IEnumerable<T> constructor, so:

List<Dictionary<int, string>> myList = new List<Dictionary<int, string>>(a);
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜