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