Exemple #1
0
 public static ArrayList ArrayListFromJson(this string json)
 {
     return(MiniJSON.JsonDecode(json) as ArrayList);
 }
Exemple #2
0
 public static Hashtable HashtableFromJson(this string json)
 {
     return(MiniJSON.JsonDecode(json) as Hashtable);
 }
Exemple #3
0
 public static string ToJson(this Dictionary <string, string> obj, bool indent = false, bool sortKey = false)
 {
     return(MiniJSON.JsonEncode(obj, indent, sortKey));
 }