System.Dynamic.BinaryOperationBinder.BinaryOperationBinder C# (CSharp) Méthode

BinaryOperationBinder() protected méthode

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