tags:

views:

184

answers:

2

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

A: 

Well, JSON isn't XML, so you can't read it as XML. Might want to look into the DataContractJsonSerializer though.

Eric Petroelje