将System.Collections.Generic.SortedList <string,t>转换为IEnumerable <t> </t> </string,t>

时间:2011-12-13 12:33:32

标签: c# generics collections ienumerable

转换

的最有效方法是什么?
System.Collections.Generic.SortedList<string,Contact>

进入

IEnumerable<Contact>

IEnumerable的使用者是一个MVC视图,它希望按照它们存储在System.Collections.Generic.SortedList

中的顺序显示这些项目。

1 个答案:

答案 0 :(得分:7)

SortedList.ValuesSortedList.GetValueList(仅限非通用版本)正是您所需要的。