ARCed.Scintilla.KeywordCollection.this C# (CSharp) 메소드

this() 공개 메소드

public this ( string keywordSetName ) : string
keywordSetName string
리턴 string
        public string this[string keywordSetName]
        {
            get
            {
                return this[this.GetKeyowrdSetIndex(keywordSetName)];
            }
            set
            {
                this[this.GetKeyowrdSetIndex(keywordSetName)] = value;
            }
        }

Same methods

KeywordCollection::this ( int keywordSet ) : string