示例#1
0
 /// <summary>Initializes a new instance of the <see cref="JsonObject"/> class.</summary>
 private protected JsonObject(MemberStore store)
 {
     _store = store;
 }
示例#2
0
 /// <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);
示例#3
0
 /// <summary>Initializes a new instance of the <see cref="JsonObject"/> class.</summary>
 public JsonObject()
 {
     _store = MemberStore.CreateSlowGrowingStore();
 }