Assembler.Label.Label C# (CSharp) Method

Label() public method

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