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 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?

share|improve this question
3  
You should try this json2csharp.com – Jerry Nixon - MSFT Jun 13 '12 at 19:19
you could try this online utility httputility.net/json-to-csharp-vb-typescript-class.aspx – Abhi Kaul May 16 at 17:15

4 Answers

up vote 14 down vote accepted

if you use Visual Studio 2012 and install Web Essentials 2012 extension then you get:

Edit->Paste special-> Paste JSON as Classes

and you get all the classes to the json you've pasted in :)

Web Essentials 2012 information can be found here

share|improve this answer
wow.... i'm speechless, accepting answer in 3...2... – Joseph Nov 8 '12 at 19:07
2  
This feature was removed in version 2.0, released December 5th 2012. Drove me crazy trying to figure out why the context-menu option wouldn't show up until I found the comment in release notes. From the changelog - vswebessentials.com/changelog - "Removed "Paste JSON as classes". It's being rolled into an official release shortly" – Snixtor Jan 11 at 3:02
2  
i've read it too. Sad day was it. We must wait for release then. – 4rchie Jan 16 at 19:11

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/

share|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
14  
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
Anyone knows the other way round: A JSON to C# converter tool online or not doesnt matter!? – Elisa May 20 at 13:28

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

share|improve this answer
Worked great to help me find what I'd done wrong in my hand coding of a class from JSON – Tony Ashworth Feb 14 at 18:00

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.

share|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

Your Answer

 
discard

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

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