Example #1
0
        public IJsonNode Clone()
        {
            var num = new JsonNode_ValueNumber(this.value);

            num.isBool = this.isBool;
            return(num);
        }
Example #2
0
 public void SetDictValue(string key, bool value)
 {
     this[key] = new JsonNode_ValueNumber(value);
 }