ABT.FuncDef.FuncDef C# (CSharp) Метод

FuncDef() публичный Метод

public FuncDef ( String name, StorageClass scs, FunctionType type, Stmt stmt ) : System
name String
scs StorageClass
type FunctionType
stmt Stmt
Результат System
        public FuncDef(String name, StorageClass scs, FunctionType type, Stmt stmt) {
            this.name = name;
            this.scs  = scs;
            this.type = type;
            this.stmt = stmt;
        }