Ejemplo n.º 1
0
 public override void Add (JSONNode aItem)
 {
     var tmp = new JSONArray();
     tmp.Add(aItem);
     Set(tmp);
 }
Ejemplo n.º 2
0
 public override JSONNode this[int aIndex]
 {
     get
     {
         return new JSONLazyCreator(this);
     }
     set
     {
         var tmp = new JSONArray();
         tmp.Add(value);
         Set(tmp);
     }
 }