Assembler.Label.Label C# (CSharp) Méthode

Label() public méthode

public Label ( string name, int index ) : System.Collections.Generic
name string
index int
Résultat System.Collections.Generic
        public Label(string name, int index)
        {
            Labels = new Dictionary<string, Label>();
            Name = name;
            Index = index;
        }
Label