I\'ve used the following C# code to convert a string of JSON data to a dynamic object using the JSON.Net framework:
// Creates a dynamic .Net object represen
Cinchoo ETL - an open source library available to parse xml into dynamic object
using (var p = ChoXmlReader.LoadText(xml).WithXPath("/")) { foreach (dynamic rec in p) Console.WriteLine(rec.Dump()); }
Checkout CodeProject article for some additional help.
Disclaimer: I'm the author of this library.