G
Guest
In an appliction I want to store lots of items in memory and locate sets of
the based on the some starting substring.
If I was doing it in sql, I would use "select * from table where Key like
'Fred%'
From what I've read the SortedDictionary should be able to do this (as it is
implemented as a tree), but there seems no way of getting at this
functionality (or the innards of the thing).
Will any of the collection classes do this? Are there any other collection
classes which will do something like this?
(I don't want to use a for each solution as I have to do LOTS of searches on
LARGE datasets).
THanks for your help
Iain
the based on the some starting substring.
If I was doing it in sql, I would use "select * from table where Key like
'Fred%'
From what I've read the SortedDictionary should be able to do this (as it is
implemented as a tree), but there seems no way of getting at this
functionality (or the innards of the thing).
Will any of the collection classes do this? Are there any other collection
classes which will do something like this?
(I don't want to use a for each solution as I have to do LOTS of searches on
LARGE datasets).
THanks for your help
Iain