javasript string to json code example
Example 1: string to json c#
JObject json = JObject.Parse(str);
Example 2: js string to json
var obj = JSON.parse("{no:'u',my:'sql'}");//returnes {no:'u',my:'sql'}
JObject json = JObject.Parse(str);
var obj = JSON.parse("{no:'u',my:'sql'}");//returnes {no:'u',my:'sql'}