I read that the ^ operator is the logical xor operator in c#, but i also thought it was the "power of" operator. Can someone clear this up for me?
|
|
|
|
|
|
|
It is not the power of operator of C# since there is no such operator in C#. It is just the XOR operator. For "power of", use Math.Pow. As you can see from this page on the C# Operators, |
||||||||||
|
