S
Srikanth
Hi
Can any one say how to check a hashtable by ignoring the case of key
supplied. I want the following requirement
It should not allow the user to do the following
Hashtable table = new Hashtable();
a) table.Add("one",1);
b) table.Add("One",1);
by default it executes the above two statements with out any
problem. But my intention is to throw an exception when the table contains
the key by ignoring the case. Is there any way to implement like above?
Thanks in advance
Srikanth
Can any one say how to check a hashtable by ignoring the case of key
supplied. I want the following requirement
It should not allow the user to do the following
Hashtable table = new Hashtable();
a) table.Add("one",1);
b) table.Add("One",1);
by default it executes the above two statements with out any
problem. But my intention is to throw an exception when the table contains
the key by ignoring the case. Is there any way to implement like above?
Thanks in advance
Srikanth