Boo.Lang.Compiler.Ast.AstUtil.CreateMethodInvocationExpression C# (CSharp) Метод

CreateMethodInvocationExpression() публичный статический Метод

public static CreateMethodInvocationExpression ( Expression target, Expression arg ) : MethodInvocationExpression
target Expression
arg Expression
Результат MethodInvocationExpression
        public static MethodInvocationExpression CreateMethodInvocationExpression(Expression target, Expression arg)
        {
            return CreateMethodInvocationExpression(arg.LexicalInfo, target, arg);
        }

Same methods

AstUtil::CreateMethodInvocationExpression ( LexicalInfo li, Expression target, Expression arg ) : MethodInvocationExpression