using System.Collections.Generic;
public static void Main()
var xml = @"<Items xmlns:json='http://james.newtonking.com/projects/json' >
XmlDocument xmldocument = new XmlDocument();
xmldocument.LoadXml(xml);
var json = JsonConvert.SerializeXmlNode(xmldocument);