Can someone please give some fair idea about how to use JSON?
+1
A:
Since there are no specifics, the best I can do is point you to a fairly complete how-to using .NET 3.5 to serialize an Object to JSON:
.NET 3.5: JSON Serialization using the DataContractJsonSerializer
Justin Niessner
2009-09-23 12:53:13
+1
A:
Rick Strahl has written several excellent blog posts on the subject.
Try this post for starters: http://www.west-wind.com/weblog/posts/164419.aspx
Paul Suart
2009-09-23 12:57:33
+1
A:
There are a lot of question on stackoverflow on this, see:
http://stackoverflow.com/questions/158818/create-json-with-net
Cleiton
2009-09-23 13:07:58
+1
A:
Hi, I use JSON.NET (http://www.codeplex.com/Json) and I think it's a good library. The serialization is almost immediate:
string json = JsonConvert.SerializeObject(obj);
and vice versa:
JObject o = JObject.Parse(json);
Alfred
2009-09-23 13:11:23