views:

136

answers:

2

I really want this so I can serialize / deserialize some complex data objects using JSON.

+1  A: 

It appears that JsonReaderWriterFactory is supported in Silverlight 3: http://msdn.microsoft.com/en-us/library/system.runtime.serialization.json.jsonreaderwriterfactory(VS.95).aspx

Richard
A: 

We have used Json.NET

It's pretty handy for serializing objects back and forth from Javascript on the client to C# on the server.

msp