Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

1 Answer

up vote 32 down vote accepted

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).

share|improve this answer
5  
hmm, then wherever i was using that operator as "power of" i'll have to fix at some point... – RCIX Oct 2 '09 at 7:36
1  
Just to add: The PowerOf Function in C# is Math.Pow. msdn.microsoft.com/en-us/library/system.math.pow.aspx – Michael Stum Oct 2 '09 at 7:37
7  
@RCIX: Didn't you notice any incorrect results when you were attempting to use ^ as the power-of operator? – LukeH Oct 2 '09 at 8:27
5  
^ is the "power of" operator in VB.NET. – Christian Hayter Nov 1 '09 at 14:07
1  
@LukeH depends on the numbers you're working with I guess. I quickly noticed when my items with a height of 2 ^ 2 weren't visible. – Stijn Mar 1 '12 at 13:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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