SortedList vs List.Sort()
I will be sorting four KeyValuePair<string, int> on the integers.
In terms of speed is it better to use SortedList or List and then do
Sort() after all the four KeyValuePairs have been inserted?
These sorts will be happening in data intensive calculation so I'm trying
to speed up the sorting.
No comments:
Post a Comment