I'm using http://json.codeplex.com library. I'm 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 can't find JsonConvert in namespace Newtonsoft.Json. I've only found class JavaScriptConvert.
Any ideas?