How come C# doesn't have a conditional XOR Operator? example

true xor false = true

true xor true = false

false xor false = false
link|improve this question

How does != work as a substitute? – Pascal Cuoq Jun 28 '11 at 14:14
7  
C# does have an xor operator ( x ^ y ). I therefore deny the premise of the question. Can you explain why you believed that C# does not have an xor operator? I am interested to learn why people believe false things about C#. – Eric Lippert Jun 28 '11 at 14:15
@Eric Lippert: I think he's referring to logical operators (& | ^) vs conditional operators (&& ||). But you're right (of course), there is a logical XOR... – BoltClock Jun 28 '11 at 14:15
3  
@BoltClock: Oh, if the question is "why is there no short-circuiting xor operator?" -- how could there be? With "and" if the first argument is false you don't need to evaluate the second. With "or", if the first argument is true then you don't need to evaluate the second. You always need to evaluate both arguments for xor, so there is no short circuiting possible. – Eric Lippert Jun 28 '11 at 14:18
@Eric: Looks like that'd be the (The Evil Greebo's) answer. – BoltClock Jun 28 '11 at 14:19
show 1 more comment
feedback

7 Answers

up vote 12 down vote accepted

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:

  • Logical AND: & - tests both sides every time.

  • Logical OR: | - test both sides every time.

  • Conditional AND: && - only tests the 2nd side if the 1st side is true.

  • Conditional OR: || - only test the 2nd side if the 1st side is false.

link|improve this answer
Thank you very much – Gilad Naaman Jun 28 '11 at 15:37
feedback

There is the logical XOR operator: ^

Documentation: C# Operators and ^ Operator

link|improve this answer
Logical, not conditional. Logical and = &, conditional and = &&. He's asking about Conditional. – The Evil Greebo Jun 28 '11 at 14:16
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:

if ( (a == b) ^ (c == d))
{

}
link|improve this answer
feedback

Oh yes, it does.

bool b1 = true;
bool b2 = false;
bool XOR = b1 ^ b2;
link|improve this answer
feedback

you can use:

a = b ^ c;

just like in c/c++

link|improve this answer
feedback

It has the logical xor operator, ^, which is what you're looking for in this case.

See http://%5Benter%20link%20description%20here%5D%5B1%5D for more information.

link|improve this answer
feedback

While there is a logical xor operator ^, there is no conditional xor operator. You can achieve a conditional xor of two values A and B using the following:

A ? (!B) : B

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.

link|improve this answer
What's the difference between a logican ^ and a conditional ^ ? oO – Armen Tsirunyan Jun 28 '11 at 14:28
See my response, above. – The Evil Greebo Jun 28 '11 at 14:38
@Armen Tsirunyan The logical operators perform bitwise operations in types where that makes sense while the conditional operators operate on boolean values and return a boolean result. Considering boolean values: 0101 ^ 0011 has the value 0110. – jimreed Jun 28 '11 at 14:42
no, you are completely wrong. there are both types of XOR's (they're called bitwise and logical, respectively) in C#. Both use the ^ symbol. – Armen Tsirunyan Jun 28 '11 at 15:10
feedback

Your Answer

 
or
required, but never shown

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