user1943020
user1943020

Reputation:

What is the difference between JSON.NET DataContractJsonSerializer and the Newtonsoft JSON serializer

Can someone help me.

What's the difference between the built in JSON.NET DataContractJsonSerializer and the Newtonsoft JSON serializer?

Is it correct that I can use one or the other with Web API and why would I choose one?

Upvotes: 19

Views: 15487

Answers (1)

Chamika Sandamal
Chamika Sandamal

Reputation: 24302

You can find the comparison of the performance here

enter image description here
(source: newtonking.com)

Here is the feature comparison,

http://james.newtonking.com/projects/json/help/index.html?topic=html/JsonNetVsDotNetSerializers.htm

Upvotes: 16

Related Questions