Exemplo n.º 1
0
 public static Dictionary <string, object> hashtableFromJson(this string json)
 {
     return(MiniJSON.jsonDecode(json) as Dictionary <string, object>);
 }
Exemplo n.º 2
0
 public static List <object> arrayListFromJson(this string json)
 {
     return(MiniJSON.jsonDecode(json) as List <object>);
 }