Use string.compare:
http://msdn.microsoft.com/en-us/library/zkcaxw5y.aspx
if (string.Compare(a, b, true) == 0)
{
...
}
0
solved How to avoid case sensitive feature? [closed]
Use string.compare:
http://msdn.microsoft.com/en-us/library/zkcaxw5y.aspx
if (string.Compare(a, b, true) == 0)
{
...
}
0
solved How to avoid case sensitive feature? [closed]