Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
I don't know if this is the same as your System.Web.Helpers solution, but it worked well for me: drowningintechnicaldebt.com/ShawnWeisfeld/archive/2010/08/22/… – M.Babcock Jan 31 '12 at 20:33
As far as I'm aware, the only "System.*" JSON serializer is the one in System.Web.Helpers.dll. But if you're just desperate to not use 3rd-party libraries, you could always write your own parser? The syntax of JSON is quite straightforward. – John Ruiz Jan 31 '12 at 20:33
Found this, single .cs file installable via NuGet - seems to work well: nuget.org/packages/DynamicJson – Danny Tuppeny Jan 31 '12 at 20:41
So what exactly are you trying to do by not using any of the standard JSON packages? Trying to eliminate one of the most common points of DLL hell in .NET? – Chris Marisic Jan 31 '12 at 20:45
@ChrisMarisic It's not a requirement, just a preference. It's for a FogBugz plugin which gets loaded into another AppDomain (I think recreated on every page request), so if I can keep it lean and avoid a dependency, it makes sense. – Danny Tuppeny Jan 31 '12 at 20:56
show 3 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.