public static Hashtable hashtableFromJson(this string json) { return(MiniJson.JsonDecode(json) as Hashtable); }
public static ArrayList arrayListFromJson(this string json) { return(MiniJson.JsonDecode(json) as ArrayList); }