예제 #1
0
파일: MiniJSON.cs 프로젝트: TimonYoon/Dev
 public static Dictionary <string, object> hashtableFromJson(this string json)
 {
     return(MiniJSON.jsonDecode(json) as Dictionary <string, object>);
 }
예제 #2
0
파일: MiniJSON.cs 프로젝트: TimonYoon/Dev
 public static List <object> arrayListFromJson(this string json)
 {
     return(MiniJSON.jsonDecode(json) as List <object>);
 }