Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Alternative to Json.Net [closed]

Tags:

json

json.net

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

like image 670
Eatdoku Avatar asked Sep 10 '10 17:09

Eatdoku


People also ask

Is JSON net deprecated?

Despite being deprecated by Microsoft in . NET Core 3.0, the wildly popular Newtonsoft. Json JSON serializer still rules the roost in the NuGet package manager system for . NET developers.

Is JSON net and Newtonsoft the same?

Thanks. Json.NET vs Newtonsoft. Json are the same thing. You must be trying to use the same code with different versions of Json.NET.

Which is better Newtonsoft JSON or System text JSON?

Json does case-insensitive property name matching by default. The System. Text. Json default is case-sensitive, which gives better performance since it's doing an exact match.

Is Newtonsoft JSON open source?

Licensing. Json.NET is open source under the MIT license and is free for commercial use.


Video Answer


2 Answers

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.

like image 97
Chris Conway Avatar answered Oct 06 '22 03:10

Chris Conway


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

like image 37
Darin Dimitrov Avatar answered Oct 06 '22 03:10

Darin Dimitrov