tags:

views:

49

answers:

2

just curious if there is an alternative solution to the Json.Net library from james newton king

+1  A: 

Yes, and it's built into the BCL: JavaScriptSerializer.

Darin Dimitrov
+1  A: 

There are two from MS directly: JavaScriptSerializer and DataContractJsonSerializer. It depends on what version of the framework you're working with as to where they live.

That being said, JSON.Net from JNK is really easy to work with and does a good job.

Chris Conway