23 references to ExclusiveOr
Microsoft.CodeAnalysis.CSharp (1)
Binder\Semantics\Operators\OperatorKindExtensions.cs (1)
372case BinaryOperatorKind.Xor: return ExpressionType.ExclusiveOr;
Microsoft.CSharp (2)
Microsoft\CSharp\RuntimeBinder\BinderHelper.cs (1)
392ExpressionType.ExclusiveOr => SpecialNames.CLR_ExclusiveOr,
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (1)
1046case ExpressionType.ExclusiveOr:
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\IDOBinder.vb (1)
1186Return ExpressionType.ExclusiveOr
System.Linq.Expressions (19)
System\Dynamic\BinaryOperationBinder.cs (1)
87case ExpressionType.ExclusiveOr:
System\Linq\Expressions\BinaryExpression.cs (7)
153ExpressionType.ExclusiveOrAssign => ExpressionType.ExclusiveOr, 922ExpressionType.ExclusiveOr => ExclusiveOr(left, right, method), 2631/// <returns>A <see cref="BinaryExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.ExclusiveOr"/> 2644/// <returns>A <see cref="BinaryExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.ExclusiveOr"/> 2655return new SimpleBinaryExpression(ExpressionType.ExclusiveOr, left, right, left.Type); 2657return GetUserDefinedBinaryOperatorOrThrow(ExpressionType.ExclusiveOr, "op_ExclusiveOr", left, right, liftToNull: true); 2659return GetMethodBasedBinaryOperator(ExpressionType.ExclusiveOr, left, right, method, liftToNull: true);
System\Linq\Expressions\Compiler\LambdaCompiler.Binary.cs (3)
159goto case ExpressionType.ExclusiveOr; 232case ExpressionType.ExclusiveOr: 312case ExpressionType.ExclusiveOr:
System\Linq\Expressions\Compiler\LambdaCompiler.Generated.cs (1)
40case ExpressionType.ExclusiveOr:
System\Linq\Expressions\Compiler\StackSpiller.Generated.cs (1)
40case ExpressionType.ExclusiveOr:
System\Linq\Expressions\DebugViewWriter.cs (3)
343case ExpressionType.ExclusiveOr: op = "^"; break; 595case ExpressionType.ExclusiveOr: 672case ExpressionType.ExclusiveOr:
System\Linq\Expressions\ExpressionStringBuilder.cs (1)
247case ExpressionType.ExclusiveOr:
System\Linq\Expressions\Interpreter\LightCompiler.cs (2)
915case ExpressionType.ExclusiveOr: 3036case ExpressionType.ExclusiveOr: