T
Tony Johansson
Hi
If you intend to use a Hashtable and the number of element are 10 or less
this has some impact on the performance according to MSDN. So in this case
you should use ListDictionary instead.
This is perhaps true but assume the average time to access some element in
Hashtable is 0.3 sec and if you instead use
a ListDictionary you have 0.2 sek but who cares about 0.1 sec even though
the performance improvement was 33 %
I do would have agreed if the perfomnace improvement was from 5 sec to 2 sec
or someing similar.
//Tony
If you intend to use a Hashtable and the number of element are 10 or less
this has some impact on the performance according to MSDN. So in this case
you should use ListDictionary instead.
This is perhaps true but assume the average time to access some element in
Hashtable is 0.3 sec and if you instead use
a ListDictionary you have 0.2 sek but who cares about 0.1 sec even though
the performance improvement was 33 %
I do would have agreed if the perfomnace improvement was from 5 sec to 2 sec
or someing similar.
//Tony