示例#1
0
 public void putJSONArray(int index, JSONArray value)
 {
     ArrList[index] = value.toString();
     ReGen();
 }
示例#2
0
        public JSONArray getJSONArray(int index)
        {
            JSONArray ja = new JSONArray(ArrList[index].Replace("▁", "{").Replace("▂", "[").Replace("▃", "]").Replace("▄", "}").Replace("▅", ","));

            return(ja);
        }