Hi,
As we know SortedDictionary is not not present in Silverlight so to find alternative of this i am using Dictionary as System.Collections.Generic.Dictionary(Of TKey, TValue).KeyCollection and for sorting i am using LINQ query.
see the full code below.
1: Dim sortedLists As New Dictionary(Of String, Object)
2:
3: Dim query = From sortedList In sortedLists Order By sortedList.Key Ascending Select sortedList.Key, sortedList.Value
4:
5: For Each que In query
6: 'get the key value using que.Key
7: 'get the value using que.Value
8: Next
Thanks....