vote up 5 vote down star
3

First off, let me start off that I am not a .net developer. The reason why I am asking this question is that we rolled out our REST-API and one of our first integration partners is a .net shop.

So basically we assumed that .net would provide some sort of wrapper to create JSON, but the developer in question created the string by hand. I've researched this topic a bit and I couldn't really find anything, though I believe .net provides something. :)

'current code    
Dim data As String
data = "[hello, world]"

In PHP I would do the following (assuming ext/json is available ;):

<?php
$json = array('hello', 'world');
$json = json_encode($json);

I am also interested in what you use to decode the json into an array/object structure.

Help is very appreciated.

flag

6 Answers

vote up 10 vote down check

There are a couple first-party and third-party options. Rick Strahl has a good overview. JSON.net is the most popular third-party option.

link|flag
1  
This looks pretty good. I'll investigate this and will let you know. Thanks so far! (Sorry, I don't have any votes left right now. Regardless of what I'll choose, I will vote for this tomorrow.) – Till Oct 1 '08 at 17:55
vote up 6 vote down

See http://stackoverflow.com/questions/35106/is-there-a-built-in-way-in-net-ajax-to-manually-serialize-an-object-to-a-json-s

Which is to say, in .NET 2.0,

Dim yourData As String() = { "Hello", "World" }
Dim jsonSerialiser As New System.Web.Script.Serialization.JavaScriptSerializer
Dim jsonString as String = jsonSerialiser.Serialize(yourData)

In .NET 3.5, send them to Rick Strahl's blog, mentioned above

link|flag
I saw this, it doesn't actually answer my question though. Or maybe I don't get it. – Till Oct 1 '08 at 17:54
Thanks for extending your answer. – Till Oct 1 '08 at 17:59
vote up 5 vote down

Json.Net is an easy to use library with some cool features.

link|flag
vote up 0 vote down

Check out DataContractJsonSerializer.

link|flag
JavaScriptSerializer is much better since it requires less coding! – azamsharp Oct 1 '08 at 18:11
vote up 2 vote down

I'm with Wayne - JSON.net works well. The nice is, it works well with no learning curve.

link|flag
vote up 3 vote down

JavaScriptSerializer is very straight forward.

Person person = new Person();

JavaScriptSerializer serializer = new JavaScriptSerializer();
String json = js.Serialize(person);
link|flag

Your Answer

Get an OpenID
or

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