SharpMod.BufferInfo.this C# (CSharp) Method

this() public method

Set and get a key value
public this ( string key ) : string
key string /// The key which the data is going to be associated with ///
return string
        public string this[string key]
        {
            get { return Get(key); }
            set { Set(key, value); }
        }