Apachai.JsonStringDictionary.this C# (CSharp) Method

this() public method

public this ( string key ) : string
key string
return string
        public string this[string key]
        {
            set {
                if (finished)
                    return;

                sb.Append ('"');
                sb.Append (key);
                sb.Append ('"');
                sb.Append (':');
                sb.Append ('"');
                sb.Append (Escape (value));
                sb.Append ('"');
                sb.Append (',');
            }
        }