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];
            }
        }