> I want to know how can i made comparisn between sensitivity of the charcter
> i.e
> I want My Code accept "HASSAN" as "hassan"
If you mean you want to do a case-insensitive comparison, see
string.Compare(string, string, bool)

Signature
Jon Skeet - <skeet@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Damon Squires - 19 May 2004 12:46 GMT
Use the System.Collections.CaseInsensitveCompare
(System.Collections.CaseInsensitiveComparer.Default.Compare("HASSAN", "hassan") will return true