PurplePen.SymbolDB.this C# (CSharp) Method

this() public method

Get the symbol with a given id. If id doesn't exist, throws exception.
public this ( string id ) : Symbol
id string
return Symbol
        public Symbol this[string id]
        {
            get
            {
                return symbols[id];
            }
        }