I have hashtable with key and values and in my code I am iterating hashtable through values like below :
foreach (Object clientObject in ClientList.Values)
{
// code to perform operation based on value
......
}
Where ClientList is hashtable.
Now I want to get key of perticualar value from hashtable in my code. is there any way to achieve that ?
Thanks
You have to iterate through the table in this way: