示例#1
0
文件: MiniJSON.cs 项目: TimonYoon/Dev
 public static List <object> arrayListFromJson(this string json)
 {
     return(MiniJSON.jsonDecode(json) as List <object>);
 }
示例#2
0
文件: MiniJSON.cs 项目: TimonYoon/Dev
 public static Dictionary <string, object> hashtableFromJson(this string json)
 {
     return(MiniJSON.jsonDecode(json) as Dictionary <string, object>);
 }
示例#3
0
文件: MiniJSON.cs 项目: TimonYoon/Dev
 public static string toJson(this Dictionary <string, string> obj)
 {
     return(MiniJSON.jsonEncode(obj));
 }