I need to serialize/de-serialize some objects into/from string and transfer them as just opaque data. I can use XmlSerializer to do it, but generated string looks clumsy and long. So, is there any concise Serializer available in .NET?

The first thing coming to my mind is that perhaps .NET should have JSON Serializer, but I cannot find it. Is there any off-the-shelf approach in .NET to convert object to/from concise string?

link|improve this question

62% accept rate
feedback

6 Answers

up vote 21 down vote accepted

There are two;

In the traditional way, they aren't 100% compatible with each-other, especially re DateTime; DCJS uses (IIRC) a literal string; JSS uses new - and neither can read t'other correctly.

Of course, if the text if opaque, you could also use any concise binary serializer, and simply base-64 encode it; for example, protobuf-net is pretty terse. But using JSON minimizes the external code needed at each end, so may well be your best bet.

link|improve this answer
According to MSDN, JavaScriptSerializer is in System.Web.Extensions.dll which is available in .NET 3.5, not necessarily .NET 3.5 SP1. – Morgan Cheng Dec 25 '08 at 2:07
IIRC, it has been marked obsolete and just recently been "un-deprecated" with 3.5 SP1. – Christian.K Dec 28 '08 at 16:12
feedback

Json.Net is a JSON library for .NET. It is available in CodePlex.

link|improve this answer
feedback

I have a very fast open source JsonSerializer available that can serialize any POCO or DataContract type, including Interfaces anonymous and late bound types, etc.

Basic Example

var customer = new Customer { Name="Joe Bloggs", Age=31 };
var json = JsonSerializer.SerializeToString(customer);
var fromJson = JsonSerializer.DeserializeFromString<Customer>(json); 
link|improve this answer
feedback

LinqToJson

link|improve this answer
feedback

just use your own api.. its easy to create json.. but you can also use JSON libraries like JSON.NET..

happy coding

link|improve this answer
feedback

JsonFx.NET has an open-source serializer which allows serialization to/from strongly typed classes which might be what you're looking for. You can control how dates are serialized and override many aspects of the serialization. It even interacts well with Linq by supporting serialization of anonymous objects. The API works just like .NET XML serialization.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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