1
什麼是一個轉換System.Collections.Generic.SortedList <string,T>到了IEnumerable <T>
System.Collections.Generic.SortedList<string,Contact>
轉換成
IEnumerable<Contact>
的IEnumerable的消費者是一個MVC視圖這將是最有效的方法想要顯示的項目按它們存儲在System.Collections.Generic.SortedList中的順序
+1 - 是 - 僅適用於熟練工 - 這將返回一個IList,它實現IEnumerable –
ChrisBD