Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is System.Json.DLL?

Tags:

json

.net

asp.net

I'm trying to follow some examples using JSON with the Http Client, but they refer to a System.Json.DLL that I cannot find. See this reference to see the reference to System.Json.DLL, but I cannot find that DLL installed on my machine. Is it an add-on? I googled but found no other result...

Thanks.

like image 432
Brian Mains Avatar asked Dec 11 '12 02:12

Brian Mains


1 Answers

That's a class library for Silverlight, but not [ASP] .NET.

If you really wanted to use it, there is an equivalent version in .net 4.5,

I would suggest you to take a look at Json.Net, it's one of the most popular .NET JSON libraries.

like image 108
Jack Avatar answered Oct 07 '22 01:10

Jack