ARCed.Scintilla.KeywordCollection.this C# (CSharp) Method

this() public method

public this ( string keywordSetName ) : string
keywordSetName string
return 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