6 references to Equal
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\ExpressionTreeCallRewriter.cs (1)
591return Expression.Equal(arg1, arg2, bIsLifted, methodInfo);
System.Linq.Expressions (5)
System\Linq\Expressions\BinaryExpression.cs (2)
920ExpressionType.Equal => Equal(left, right, liftToNull, method), 956return Equal(left, right, liftToNull: false, method: null);
System\Linq\Expressions\Compiler\LambdaCompiler.Statements.cs (1)
223EmitExpressionAndBranch(true, Expression.Equal(switchValue, testValue, false, node.Comparison), labels[i]);
System\Linq\Expressions\Interpreter\LightCompiler.cs (1)
1614Expression.Equal(temp.Parameter, val, false, node.Comparison),
System\Linq\Expressions\SwitchExpression.cs (1)
271BinaryExpression equal = Equal(switchValue, firstTestValue, false, comparison);