CodeInsiders.SharpQL.Operators.ModuloArithmeticExpressionOperator.ModuloArithmeticExpressionOperator C# (CSharp) Метод

ModuloArithmeticExpressionOperator() публичный Метод

public ModuloArithmeticExpressionOperator ( Expression leftOperand, Expression rightOperand ) : System
leftOperand Expression
rightOperand Expression
Результат System
        public ModuloArithmeticExpressionOperator(Expression leftOperand, Expression rightOperand)
            : base(leftOperand, rightOperand)
        {
            if (leftOperand == null) {
                throw new ArgumentNullException("leftOperand");
            }
            if (rightOperand == null) {
                throw new ArgumentNullException("rightOperand");
            }
        }
ModuloArithmeticExpressionOperator