Parse() public static method

public static Parse ( string aJSON ) : JSONNode
aJSON string
return JSONNode
示例#1
0
 public static JSONNode Parse(string aJSON)
 {
     return(JSONNode.Parse(aJSON));
 }
示例#2
0
 public static JSONNode ParseFromWeb(string aJSON)
 {
     //return JSONNode.Parse (HTMLUtils.Decode(aJSON));
     return(JSONNode.Parse(aJSON));
 }