How come C# doesn't have a conditional XOR Operator? example
true xor false = true
true xor true = false
false xor false = false
|
How come C# doesn't have a conditional XOR Operator? example
| ||||
|
show 1 more comment
feedback
|
|
In C#, conditional operators only execute their secondary operand if necessary. Since an XOR must by definition test both values, a conditional version would be silly. Examples:
| ||||
|
feedback
|
|
There is the logical XOR operator: Documentation: C# Operators and ^ Operator | ||||
feedback
|
|
Conditional xor doesn't exist, but you can use logical one because xor is defined for booleans, and all conditional comparisons evaluate to booleans. So you can say something like:
| |||
|
feedback
|
|
It has the logical xor operator, See http://%5Benter%20link%20description%20here%5D%5B1%5D for more information. | |||
|
feedback
|
|
While there is a logical xor operator
The parens are not necessary, but I added them for clarity. As pointed out by The Evil Greebo, this evaluates both expressions, but xor cannot be short circuited like and and or. | |||||||||
feedback
|
!=work as a substitute? – Pascal Cuoq Jun 28 '11 at 14:14& | ^) vs conditional operators (&& ||). But you're right (of course), there is a logical XOR... – BoltClock♦ Jun 28 '11 at 14:15