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

LabeledStmt() public méthode

public LabeledStmt ( String label, Stmt stmt ) : System
label String
stmt Stmt
Résultat System
        public LabeledStmt(String label, Stmt stmt) {
            this.Label = label;
            this.Stmt = stmt;
        }