System.Linq.Expressions.TypedDynamicExpressionN.TypedDynamicExpressionN C# (CSharp) Method

TypedDynamicExpressionN() private method

private TypedDynamicExpressionN ( Type returnType, Type delegateType, System.Runtime.CompilerServices.CallSiteBinder binder, IReadOnlyList arguments ) : System
returnType Type
delegateType Type
binder System.Runtime.CompilerServices.CallSiteBinder
arguments IReadOnlyList
return System
        internal TypedDynamicExpressionN(Type returnType, Type delegateType, CallSiteBinder binder, IReadOnlyList<Expression> arguments)
            : base(delegateType, binder, arguments)
        {
            Debug.Assert(delegateType.GetMethod("Invoke").GetReturnType() == returnType);
            _returnType = returnType;
        }
TypedDynamicExpressionN