Пример #1
0
 public static Dictionary <string, object> dictionaryFromJson(this string json)
 {
     return(MiniJSON.jsonDecode(json, true) as Dictionary <string, object>);
 }
Пример #2
0
 public static List <object> listFromJson(this string json)
 {
     return(MiniJSON.jsonDecode(json, true) as List <object>);
 }
Пример #3
0
 public static Hashtable hashtableFromJson(this string json)
 {
     return(MiniJSON.jsonDecode(json) as Hashtable);
 }
Пример #4
0
 // decode extensions
 public static ArrayList arrayListFromJson(this string json)
 {
     return(MiniJSON.jsonDecode(json) as ArrayList);
 }