Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 454 Bytes

README.md

File metadata and controls

15 lines (8 loc) · 454 Bytes

LibXMLToJSON_CSharp

The library LibXMLToJSON provides a simple XML to JSON converter. Ir produces output that conforms to the conventions introduced by David Calhoun on https://github.com/davidcalhoun/jstoxml .

This library makes use of the free JSON library provided at https://json.codeplex.com/ .

Usage example:

XmlDocument doc = new XmlDocument();
doc.Load(SOME_FILE_PATH);
JObject jobj = XMLToJSON.ToJSON(doc);