public KeyValuePair(string key, JsonValue value) { this.key = key; this.value = value; }
public JsonValueDebugView(JsonValue jsonValue) { this.jsonValue = jsonValue; }
public KeyValuePair(JsonObject parent, string key, JsonValue value) { this.parent = parent; this.key = key; this.value = value; }