JSOn.Net library JsonConvert
- by ozsenegal
I'm using http://json.codeplex.com library.Im trying to convert XML to JSON and vice-versa.
However they have an example,using "JsonConvert" class
XmlDocument doc = new XmlDocument();
doc.LoadXml(xml);
string jsonText = JsonConvert.SerializeXmlNode(doc);
I cant find "JsonConvert" in namespace "Newtonsoft.Json".Only class i've found is…