System\Linq\Expressions\BinaryExpression.cs (5)
916ExpressionType.LessThan => LessThan(left, right, liftToNull, method),
1130/// <returns>A <see cref="BinaryExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.LessThan"/>
1145/// <returns>A <see cref="BinaryExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.LessThan"/>
1154return GetComparisonOperator(ExpressionType.LessThan, "op_LessThan", left, right, liftToNull);
1156return GetMethodBasedBinaryOperator(ExpressionType.LessThan, left, right, method, liftToNull);