What is the most efficient way to convert a
System.Collections.Generic.SortedList<string,Contact>
into a
IEnumerable<Contact>
The consumer of IEnumerable is an MVC view which will want to display the items in the order in which they were stored in System.Collections.Generic.SortedList
SortedList.ValuesorSortedList.GetValueList(only in the non-generic version) is just what you need.