Ejemplo n.º 1
0
        public override string ToString()
        {
            string text = "{";

            foreach (KeyValuePair <string, JSONNode> item in m_Dict)
            {
                if (text.Length > 2)
                {
                    text += ", ";
                }
                text = text + "\"" + JSONNode.Escape(item.Key) + "\":" + item.Value.ToString();
            }
            return(text + "}");
        }
Ejemplo n.º 2
0
 public override string ToString(string aPrefix)
 {
     return("\"" + JSONNode.Escape(m_Data) + "\"");
 }
Ejemplo n.º 3
0
 public override string ToString()
 {
     return("\"" + JSONNode.Escape(this.m_Data) + "\"");
 }