/// <summary>Initializes a new instance of the <see cref="JsonObject"/> class.</summary> private protected JsonObject(MemberStore store) { _store = store; }
/// <summary> /// Copy the current <see cref="MemberStore"/> into the <paramref name="destination"/>. /// </summary> /// <param name="destination"></param> public void CopyTo(MemberStore destination) => destination._map = _map.Merge(destination._map);
/// <summary>Initializes a new instance of the <see cref="JsonObject"/> class.</summary> public JsonObject() { _store = MemberStore.CreateSlowGrowingStore(); }