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

InstanceMethodCallExpression() public method

public InstanceMethodCallExpression ( MethodInfo method, Expression instance ) : System.Collections.Generic
method System.Reflection.MethodInfo
instance Expression
return System.Collections.Generic
        public InstanceMethodCallExpression(MethodInfo method, Expression instance)
            : base(method)
        {
            Debug.Assert(instance != null);

            _instance = instance;
        }