示例#1
0
 public void SetDictValue(string key, bool value)
 {
     this[key] = new JsonNodeNumber(value);
 }
 public void SetArrayValue(int index, bool value)
 {
     this[index] = new JsonNodeNumber(value);
 }