vote up 1 vote down star

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?

flag

1 Answer

vote up 13 vote down check

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, ^ is listed under the "Logical (boolean and bitwise)" category, which means it can both handle boolean values, and binary values (for bitwise XOR).

link|flag
hmm, then wherever i was using that operator as "power of" i'll have to fix at some point... – RCIX Oct 2 at 7:36
Just to add: The PowerOf Function in C# is Math.Pow. msdn.microsoft.com/en-us/library/… – Michael Stum Oct 2 at 7:37
1  
@RCIX: Didn't you notice any incorrect results when you were attempting to use ^ as the power-of operator? – Luke Oct 2 at 8:27
^ is the "power of" operator in VB.NET. – Christian Hayter Nov 1 at 14:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.