C# Linq 返回 SortedList
如何让 C# 中的 Linq 返回 SortedList< /code>
给定一个
IEnumerable
?如果不能,是否可以将 IEnumerable
转换或转换为 SortedList
?
How can I get Linq in C# to return a SortedList
given an IEnumerable
? If I can't, is it possible to cast or transform the IEnumerable
to a SortedList
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
最简单的方法可能是使用 ToDictionary 创建字典,然后调用 SortedList(dictionary) 构造函数。或者,添加您自己的扩展方法:
这将允许您创建以匿名类型作为值的
SortedList
:The simplest way would probably be to create a dictionary using
ToDictionary
, and then call theSortedList<TKey, TValue>(dictionary)
constructor. Alternatively, add your own extension method:This will allow you to create
SortedList
s with anonymous types as the values:您将需要使用
IDictionary
构造函数,因此在 linq 查询上使用ToDictionary
扩展方法,然后使用 newSortedList(dictionary);
例如
You will need to use the
IDictionary
constructor so use theToDictionary
extension method on your linq query and then use newSortedList(dictionary);
e.g.
像这样的东西工作得很好
Something like this works just fine