ABT.FuncCall.FuncCall C# (CSharp) 메소드

FuncCall() 공개 메소드

public FuncCall ( Expr func, FunctionType funcType, List args ) : System
func Expr
funcType FunctionType
args List
리턴 System
        public FuncCall(Expr func, FunctionType funcType, List<Expr> args) {
            this.Func = func;
            this.FuncType = funcType;
            this.Args = args;
        }