Exemplo n.º 1
0
 public JsonValue this[JsonString str] {
     get => this[unpackJsonString(str)];
     set => this[unpackJsonString(str)] = value;
Exemplo n.º 2
0
 private string unpackJsonString(JsonString str)
 {
     return(str?.Value ?? throw new ArgumentNullException());
 }