I'm writing a service where performance is essential, and I'm not sure what is the fastest thing. I have a few Objects (50-200) which each have an ID in them (ints, e.g. 84397 or 23845). Would it be faster to have a Dictionary, a List of KeyValue Pairs or a List with the indexes set to the IDs with the rest having null values or an array with the same idea?
|
|
It depends on which operation you want to execute. Let's assume that you want to find an object with a given ID.
Thus, in your situation, I would choose the dictionary, unless the marginally better performance of the huge array is really relevant in your case. |
||||
|
|
Dictionary uses HashTable internally so I think it would be the fastest one |
|||||||||||||
|
|
Dictionary versus List Lookup time Also, for a more detailed explaination of the different collections, check out this question. |
|||
|
|
|
This is a forum post that might answer part of your question: http://forums.create.msdn.com/forums/t/33345.aspx and this could answer the other part: |
|||
|
|
|
You can use Hashtables as well. Dictionary internally using it anyway. but dictionary has an advantage that it is a GENERIC type which gives you type safety. here is different thread Dictionary Vs HashTable I hope it helps you decide. Praveen |
|||
|
|
