コード例 #1
0
ファイル: yx.MiniJSON.cs プロジェクト: LuckyJoey/Apollo
 public static string toJson(this Hashtable obj)
 {
     return(MiniJSON.jsonEncode(obj));
 }
コード例 #2
0
ファイル: yx.MiniJSON.cs プロジェクト: LuckyJoey/Apollo
 public static string toJson(this Dictionary <string, string> obj)
 {
     return(MiniJSON.jsonEncode(obj));
 }
コード例 #3
0
ファイル: yx.MiniJSON.cs プロジェクト: h1014179971/AdsDemo
 public static string hashtableToJson(this Hashtable table)
 {
     return(MiniJSON.jsonEncode(table));
 }