Ejemplo n.º 1
0
 public JSONArray setJSONObject(int index, JSONObject value)
 {
     return(setValue(index, value.data));
 }
Ejemplo n.º 2
0
 public JSONObject setJSONObject(string key, JSONObject value)
 {
     return(setValue(key, value.data));
 }
Ejemplo n.º 3
0
 public JSONArray append(JSONObject value)
 {
     return(appendValue(value.data));
 }