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;
        }