PurplePen.SymbolDB.this C# (CSharp) Метод

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

Get the symbol with a given id. If id doesn't exist, throws exception.
public this ( string id ) : Symbol
id string
Результат Symbol
        public Symbol this[string id]
        {
            get
            {
                return symbols[id];
            }
        }