转换 IEnumerable>>列表<字典>

发布于 2024-11-30 05:13:36 字数 240 浏览 0 评论 0 原文

var a = GetIEnumerableDictionary();

aIEnumerable>。 如何将 a 转换为 List>

var a = GetIEnumerableDictionary();

a is IEnumerable<Dictionary<int, string>>.
How do I convert a to List<Dictionary<int, string>> ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

诗酒趁年少 2024-12-07 05:13:36

a.ToList() 应该可以解决问题。

ToList() 扩展方法位于 System.Linq 命名空间中。如果 Linq 不可用,则 List 构造函数采用 IEnumerable 作为参数,正如 Jalal 已在此页面上回答的那样。

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.

川水往事 2024-12-07 05:13:36

您可以使用 List IEnumerable 构造函数,因此:

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

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

List<Dictionary<int, string>> myList = new List<Dictionary<int, string>>(a);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文