ABT.FuncCall.FuncCall C# (CSharp) Méthode

FuncCall() public méthode

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