System\Linq\Expressions\BinaryExpression.cs (5)
918ExpressionType.GreaterThan => GreaterThan(left, right, liftToNull, method),
1097/// <returns>A <see cref="BinaryExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.GreaterThan"/>
1111/// <returns>A <see cref="BinaryExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.GreaterThan"/>
1120return GetComparisonOperator(ExpressionType.GreaterThan, "op_GreaterThan", left, right, liftToNull);
1122return GetMethodBasedBinaryOperator(ExpressionType.GreaterThan, left, right, method, liftToNull);