コード例 #1
0
 public static string toJson(this Hashtable obj)
 {
     return(MiniJSON.jsonEncode(obj));
 }
コード例 #2
0
 public static string toJson(this Dictionary <string, string> obj)
 {
     return(MiniJSON.jsonEncode(obj));
 }
コード例 #3
0
ファイル: BTPropWnd.cs プロジェクト: Lucas1805/Teek_AR
 protected static void DrawArrayList(string label, ArrayList obj)
 {
     EditorGUILayout.TextField(label, MiniJSON.jsonEncode(obj));
 }