示例#1
0
 public static Hashtable ToHashtable(this string json)
 {
     return(MiniJSON.jsonDecode(json) as Hashtable);
 }
示例#2
0
 public static ArrayList arrayListFromJson(this string json)
 {
     return(MiniJSON.jsonDecode(json) as ArrayList);
 }