I'm new to C# and could not find XNOR operator to provide this truth table:
a b a XNOR b ---------------- T T T T F F F T F F F T
Is there a specific operator for this? Or I need to use !(A^B)?
|
I'm new to C# and could not find XNOR operator to provide this truth table: a b a XNOR b ---------------- T T T T F F F T F F F T Is there a specific operator for this? Or I need to use !(A^B)? |
||||
|
XNOR is simply equality on booleans; use This is an easy thing to miss, since equality isn't commonly applied to booleans. And there are languages where it won't necessarily work. For example, in C, any non-zero scalar value is treated as true, so two "true" values can be unequal. But the question was tagged c#, which has, shall we say, well-behaved booleans. Note also that this doesn't generalize to bitwise operations, where you want |
|||||||||
|
|
XOR = A or B, but Not A & B or neither (Can't be equal [!=]) However, non-boolean cases present problems, like in this example:
instead, use this:
or
the first example will return false (5 != 1), but the second will return true (a[value?] and b[value?]'s values return the same boolean, true (value = not 0/there is a value) the alt example is just the reversed (a || b) && !(a && b) (XOR) gate |
||||
|
|
|
No, You need to use Though I suppose you could use operator overloading to make your own XNOR. |
|||||||||
|
==for boolean operands... – Magnus Hoff Aug 14 '11 at 0:21