Ejemplo n.º 1
0
 public JsonObject(JsonObject obj)
 {
     inner = new Dictionary <string, IJsonValue>(obj.inner);
 }
Ejemplo n.º 2
0
 public bool Equals(JsonObject other)
 {
     return(other != null && inner.EqualsDictionary(other.inner));
 }