I'm looking for the easiest/best way to convert JSON to a dynamic object, preferably without any third party dependencies (for various reasons). Currently, I have the following, but it required referencing System.Web.Helpers from C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\Assemblies, which feels a bit nasty.
var webClient = new WebClient();
var jsonSerializer = new JavaScriptSerializer();
var url = string.Format(GetBoardUrl, TrelloDevKey, TrelloTestAuthToken);
var result = webClient.DownloadString(url);
var json = jsonSerializer.Deserialize<dynamic>(result);
dynamic board = new DynamicJsonObject(json);
Console.WriteLine(board.id);
Without the System.Web.Helpers reference, I can only get as far as the json variable, which works, but I have to access properties from the dictionary (eg. board["id"]). I could live with this, but I'm not (yet) ready to believe I can't do this with framework-only methods! :D
System.Web.Helperssolution, but it worked well for me: drowningintechnicaldebt.com/ShawnWeisfeld/archive/2010/08/22/… – M.Babcock Jan 31 '12 at 20:33