Given a stream of JSON, how can I read it as XML. I am aware of System.Runtime.Serialization.Json.XmlJsonReader but it is internal
+3
A:
Answered here:
http://stackoverflow.com/questions/814001/json-net-convert-json-string-to-xml-or-xml-to-json-string
SolutionYogi
2009-07-02 17:46:32
A:
Well, JSON isn't XML, so you can't read it as XML. Might want to look into the DataContractJsonSerializer though.
Eric Petroelje
2009-07-02 17:47:37