What is the operator below ^? When to use it?
My programing language is C#.
|
|
|||||||
|
|
It's the XOR operator. It's used in bitwise operations, where the result is true if the left side is true or the right side is true, but false if both are true or both are false. So
Which is C7 in hexadecimal. In general, if you're not doing bitwise arithmetic, you won't need to worry about it. |
||||
|
|
Example:
Example:
Example:
|
|||
|
|
|
You can find some good examples on this operator at http://www.blackwasp.co.uk/CSharpLogicalBitwiseOps.aspx |
|||
|
|
|
I think of it as a binary operator just like ||, &&, etc... If I were writing logic and ended up with:
I might rewrite it as:
That said, I'd take it on a case by base basis and weigh the benefit of brevity vs. potential obfuscation due to relative obscurity. |
|||
|
|
|
Its Exclusive OR (XOR) operator as mentioned by others. Here is the truth table for XOR
Note that P^Q is equal to P!=Q. Sometimes P!=Q is used in the code instead of XOR operator. |
|||
|
|
+operator. – stakx Jul 22 '10 at 14:26^is an operator, and that it's about the C# language, and that the language is from Microsoft, and that Microsoft's developer platform is known as MSDN, one can search forMSDN C# operators. That's how I ended up at the page linked to in the above comment. – stakx Jul 22 '10 at 17:11