Is there a C# case insensitive equals operator?

Posted by GateKiller on Stack Overflow See other posts from Stack Overflow or by GateKiller
Published on 2009-03-10T16:52:52Z Indexed on 2010/04/07 2:23 UTC
Read the original article Hit count: 375

Filed under:
|
|
|
|

I know that the following is case sensitive:

if (StringA == StringB) {

So is there an operator which will compare two strings in an insensitive manner?

© Stack Overflow or respective owner

Related posts about c#

Related posts about operators