I'm wondering if there is a tool out there that can take in a JSON string, analyze it, and generate a C# class file that can then be used to deserialize the json string into a C# object of that class.

I'm looking for something similar to a code generator of sorts, but the input would be a JSON string, instead of a database table/view/whatever, and the output would be your typical C# class file.

Anyone have any suggestions?

link|improve this question

feedback

3 Answers

up vote 22 down vote accepted

I've just released JSON C# Class Generator, an application that generates C# classes from a sample JSON text.

Here's the link: http://jsonclassgenerator.codeplex.com/

link|improve this answer
awesome! I look forward to seeing this project develop. – Joseph Nov 1 '10 at 17:09
4  
Too bad this doesn't created plain old CLR objects instead of wrappers around the Json classes. That's what I think is really needed. – Shawn Wildermuth Feb 7 '11 at 2:29
3  
I've taken this a step further and developed a web front end to create POCOs from a json string or url: json2csharp.com – JonathanK Apr 18 '11 at 16:42
feedback

I have found json2csharp works well, which is a lightweight website giving .NET code that can be copy-pasted.

link|improve this answer
feedback

Nothing that I know of, but it shouldn't be that hard using one of the code generator out there (MyGeneration / CodeSmith / CodeBreeze).

The trick is that Javascript is rather loosely typed, so JSON doesn't always have enough information to decide what's the base C# data type to make a property. Also, one of the advantages of JSON is that you can freely add new properties, or leave out properties not needed for that message. So, for the message used to generate the code has all the properties that it is going to use.

link|improve this answer
Thanks James. Good points. I'm trying to consume a JSON service which I don't control, so I'm really only interested in a particular set of data points. I'm really just trying to get the bulk of the work done, and once I get it into a C# class I can polish it up. Can you use any of the generators you've described to target a JSON string as an input instead of a database? – Joseph Jun 30 '09 at 23:24
Sure --- They all include a assembly which allows access to a database's schema, but if you want to get you input for somewhere else, that's fine. They are all template based, so you'll need a new template. – James Curran Jun 30 '09 at 23:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.