DotNetGnat
Programmer
Guys,
I have a hashtable that looks
Key | Value
____________
1_1 | myobject1
1_2 | myobject2
2_1 | myobject3
2_2 | myobject4
2_3 | myobject5
I want to filter this hashtable based on the key 1* or 2*
and create a sub list/arraylist of myobjects
some method like FilteredList(2_*) would give an arraylist of 3 objects.
thanks in advance.
-DNG
I have a hashtable that looks
Key | Value
____________
1_1 | myobject1
1_2 | myobject2
2_1 | myobject3
2_2 | myobject4
2_3 | myobject5
I want to filter this hashtable based on the key 1* or 2*
and create a sub list/arraylist of myobjects
some method like FilteredList(2_*) would give an arraylist of 3 objects.
thanks in advance.
-DNG