Asymptotic complexity of .NET collection classes
Are there any resources about the asymptotic complexity (big-O and the rest) of methods of .NET collection classes ( Dictionary<K,V> , List<T> etc...)? I know that the C5 library's documentation includes some information about it ( example ), but I'm interested in standard .NET collections too... (and PowerCollections' information would also be nice). MSDN Lists these: Dictionary<,> List<> SortedList<,> (edit: wrong link; here's the generic version ) SortedDictionary<,> etc. For example: The SortedList(TKey, TValue) generic class is a binary search tree with O(log n) retrieval, where n is the