up vote 6 down vote favorite
1
share [g+] share [fb]

I was reading some 3rd party code and I found this:

x.Flags = x.Flags ^ Flags.Hidden;

What does it do?

I've used '&' and '|' for bitwise 'and' and 'or' with enums, but it's the first time I see the that symbol...

link|improve this question

1  
It's not a "hat". Its a potato. – Will Oct 24 '08 at 18:54
feedback

4 Answers

up vote 19 down vote accepted

^ is the bitwise XOR operator in C#.

EDIT: a ^ b returns true if a is true and b is false or if a is false and b is true, but not both.

link|improve this answer
My memory of bitwise operations are a bit rusty... what would an XOR be doing in this situation? – Adam Lassek Oct 24 '08 at 18:39
Return true if and only if exactly one of the operands is true. – Santiago Palladino Oct 24 '08 at 18:41
1  
It would toggle the Flags.Hidden bit in x.Flags. (If it's 1, it'll be 0; if it's 0, it'll be 1). – Jeremy Ruten Oct 24 '08 at 18:42
feedback

That would be the 'xor' operator. In your example code, it would toggle the Flags.Hidden either on or off, depending on the current value of x.Flags.

The benefit of doing it this way is that it allows you to change the setting for Flags.Hidden without affecting any other flags that have been set.

link|improve this answer
feedback

Taken from here:

For integral types, ^ computes the bitwise exclusive-OR of its operands. For bool operands, ^ computes the logical exclusive-or of its operands; that is, the result is true if and only if exactly one of its operands is true.

link|improve this answer
feedback

It's the exclusive OR (XOR) operator, this link has example usage

http://weblogs.asp.net/alessandro/archive/2007/10/02/bitwise-operators-in-c-or-xor-and-amp-amp-not.aspx

link|improve this answer
Phil...are they not working you hard enough? :) – Kev Oct 24 '08 at 18:42
feedback

Your Answer

 
or
required, but never shown

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