Deserialize() public static method

Parses the string json into a value
public static Deserialize ( string json ) : object
json string A JSON string.
return object
示例#1
0
 public static Hashtable hashtableFromJson(this string json)
 {
     return(Json.Deserialize(json) as Hashtable);
 }
示例#2
0
 public static ArrayList arrayListFromJson(this string json)
 {
     return(Json.Deserialize(json) as ArrayList);
 }