System.Dynamic.BinaryOperationBinder.BinaryOperationBinder C# (CSharp) 메소드

BinaryOperationBinder() 보호된 메소드

Initializes a new instance of the BinaryOperationBinder class.
protected BinaryOperationBinder ( ExpressionType operation ) : System.Dynamic.Utils
operation ExpressionType The binary operation kind.
리턴 System.Dynamic.Utils
        protected BinaryOperationBinder(ExpressionType operation)
        {
            ContractUtils.Requires(OperationIsValid(operation), nameof(operation));
            Operation = operation;
        }