optimized collection

  • Thread starter Thread starter Uzi Baruch
  • Start date Start date
U

Uzi Baruch

Hi



I was wandering if someone knows which is the most optimized collection .NET
has to offer.



if have a key \ value pair, and I want to be able to retrieve a bunch of
keys and get their values without having the Hash table collection for
example to search for each key separately (which is time consuming
operation).



I’m looking for an implementation that would be best suited for this
operation.



Thanks,

Uzi
 
Hello, Uzi,
if have a key \ value pair, and I want to be able to retrieve a bunch
of keys and get their values without having the Hash table collection
for example to search for each key separately (which is time consuming
operation).

A hash table is the best you can choose... to speed it up, implement your
own hash-function.

--
Greetings
Jochen

Do you need a memory-leak finder ?
http://www.codeproject.com/tools/leakfinder.asp

Do you need daily reports from your server?
http://sourceforge.net/projects/srvreport/
 
Back
Top