NullableBoolean Exclusive Or Operator
Performs a bitwise exclusive-OR operation on the supplied parameters.
[Obsolete(Message="Operator^ is not intuitive, is ambiguous and is not defined by the NULL semantic. Use explicit expression ((x || y) && !(x && y)) instead of operator^.", IsError="False")]
public static
NullableBoolean operator ^(
NullableBoolean x,
NullableBoolean y);
Parameters
- x
- A NullableBoolean structure.
- y
- A NullableBoolean structure.
Return Value
Null if either instance of NullableBoolean is
Null otherwise the result of the logical XOR operation.
Requirements
Namespace: TechTalk.Genome.NullableTypes
Assembly: TechTalk.Genome (in TechTalk.Genome.dll)
Version: 4.2.4.4
Editions: Professional, Evaluation, Express
See Also
NullableBoolean Class | TechTalk.Genome.NullableTypes Namespace