Hi !
I can't find any way to extract easily one item from an hashtable that i have (from system.collection) without run all over the items and search for it by a key.
is there any better way ?
Printable View
Hi !
I can't find any way to extract easily one item from an hashtable that i have (from system.collection) without run all over the items and search for it by a key.
is there any better way ?
Object value = table.Item(key);
Where's the problem?