Newtonsoft.Json 13.0.2
Json.NET
Json.NET is a popular high-performance JSON framework for .NET
Serialize JSON
Product product = new Product();
product.Name = "Apple";
product.Expiry = new DateTime(2008, 12, 28);
product.Sizes = new string[] { "Small" };
string json = JsonConvert.SerializeObject(product);
// {
// "Name": "Apple",
// "Expiry": "2008-12-28T00:00:00",
// "Sizes": [
// "Small"
// ]
// }
Deserialize JSON
string json = @"{
'Name': 'Bad Boys',
'ReleaseDate': '1995-4-7T00:00:00',
'Genres': [
'Action',
'Comedy'
]
}";
Movie m = JsonConvert.DeserializeObject<Movie>(json);
string name = m.Name;
// Bad Boys
LINQ to JSON
JArray array = new JArray();
array.Add("Manual text");
array.Add(new DateTime(2000, 5, 23));
JObject o = new JObject();
o["MyArray"] = array;
string json = o.ToString();
// {
// "MyArray": [
// "Manual text",
// "2000-05-23T00:00:00"
// ]
// }
Links
Showing the top 20 packages that depend on Newtonsoft.Json.
| Packages | Downloads |
|---|---|
|
TemplateEngine.Docx
Smart template engine for generating Word docx documents on the server-side with a human-created Word templates, based on content controls Word feature
|
74 |
|
Microsoft.TestPlatform.TestHost
Testplatform host executes the test using specified adapter.
|
60 |
|
Microsoft.TestPlatform.TestHost
Testplatform host executes the test using specified adapter.
|
59 |
|
Microsoft.TestPlatform.TestHost
Testplatform host executes the test using specified adapter.
|
48 |
|
Microsoft.AspNetCore.Mvc.ViewFeatures
ASP.NET Core MVC view rendering features. Contains common types used in most MVC applications as well as view rendering features such as view engines, views, view components, and HTML helpers.
Commonly used types:
Microsoft.AspNetCore.Mvc.Controller
Microsoft.AspNetCore.Mvc.ValidateAntiForgeryTokenAttribute
Microsoft.AspNetCore.Mvc.ViewComponent
|
33 |
|
Microsoft.Extensions.DependencyModel
Abstractions for reading `.deps` files.
|
33 |
|
Microsoft.AspNetCore.JsonPatch
ASP.NET Core support for JSON PATCH.
|
33 |
|
KubeMQ.SDK.csharp
.NET SDK Client for KubeMQ
|
18 |
|
Microsoft.TestPlatform.TestHost
Testplatform host executes the test using specified adapter.
|
11 |
|
Microsoft.EntityFrameworkCore.Design
Shared design-time components for Entity Framework Core tools.
|
4 |
|
Microsoft.Extensions.DependencyModel
Abstractions for reading `.deps` files.
Commonly Used Types:
Microsoft.Extensions.DependencyModel.DependencyContext
|
3 |
|
Microsoft.EntityFrameworkCore.Design
Shared design-time components for Entity Framework Core tools.
|
3 |
|
Microsoft.AspNetCore.JsonPatch
ASP.NET Core support for JSON PATCH.
|
3 |
|
Microsoft.AspNetCore.JsonPatch
ASP.NET Core support for JSON PATCH.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/324a351f7f1ae6c17b6a8661903e2a7921a7d75c
|
3 |
|
Microsoft.AspNetCore.JsonPatch
ASP.NET Core support for JSON PATCH.
This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/b908e913e3befcfe241f3294509e6d9570acc07b
|
3 |
|
Microsoft.AspNetCore.JsonPatch
ASP.NET Core support for JSON PATCH.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/6254f5ca64f85b90327592dff67ea6b2ec0262c6
|
3 |
|
Microsoft.AspNetCore.JsonPatch
ASP.NET Core support for JSON PATCH.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/c49ccc8727c620ce1cb8fb431bb3fe8f2e747236
|
3 |
.NET Framework 2.0
- No dependencies.
.NET Framework 3.5
- No dependencies.
.NET Framework 4.0
- No dependencies.
.NET Framework 4.5
- No dependencies.
.NET Standard 1.0
- Microsoft.CSharp (>= 4.3.0)
- NETStandard.Library (>= 1.6.1)
- System.ComponentModel.TypeConverter (>= 4.3.0)
- System.Runtime.Serialization.Primitives (>= 4.3.0)
.NET Standard 1.3
- Microsoft.CSharp (>= 4.3.0)
- NETStandard.Library (>= 1.6.1)
- System.ComponentModel.TypeConverter (>= 4.3.0)
- System.Runtime.Serialization.Formatters (>= 4.3.0)
- System.Runtime.Serialization.Primitives (>= 4.3.0)
- System.Xml.XmlDocument (>= 4.3.0)
.NET 6.0
- No dependencies.
.NET Standard 2.0
- No dependencies.
| Version | Downloads | Last updated |
|---|---|---|
| 14.0.1-beta2 | 0 | 09/21/2026 |
| 14.0.1-beta1 | 1 | 09/22/2026 |
| 13.0.5-beta1 | 2 | 09/20/2026 |
| 13.0.4 | 16 | 08/21/2026 |
| 13.0.3 | 168 | 08/07/2025 |
| 13.0.2 | 1 | 09/21/2026 |
| 13.0.1 | 11 | 05/15/2025 |
| 12.0.3 | 1 | 09/21/2026 |
| 12.0.2 | 2 | 09/21/2026 |
| 12.0.1 | 1 | 09/21/2026 |
| 11.0.2 | 2 | 09/21/2026 |
| 11.0.1 | 1 | 09/20/2026 |
| 10.0.3 | 75 | 11/21/2025 |
| 10.0.2 | 2 | 09/21/2026 |
| 10.0.1 | 1 | 09/21/2026 |
| 9.0.1 | 34 | 09/16/2025 |
| 8.0.3 | 1 | 09/20/2026 |
| 8.0.2 | 2 | 09/20/2026 |
| 8.0.1 | 3 | 09/20/2026 |
| 7.0.1 | 1 | 09/20/2026 |
| 6.0.8 | 1 | 09/20/2026 |
| 6.0.7 | 1 | 09/20/2026 |
| 6.0.6 | 1 | 09/20/2026 |
| 6.0.5 | 2 | 09/20/2026 |
| 6.0.4 | 3 | 09/20/2026 |
| 6.0.3 | 3 | 09/20/2026 |
| 6.0.2 | 2 | 09/20/2026 |
| 6.0.1 | 2 | 09/20/2026 |
| 5.0.8 | 1 | 09/20/2026 |
| 5.0.7 | 3 | 09/20/2026 |
| 5.0.6 | 1 | 09/20/2026 |
| 5.0.5 | 1 | 09/20/2026 |
| 5.0.4 | 1 | 09/20/2026 |
| 5.0.3 | 2 | 09/20/2026 |
| 5.0.2 | 2 | 09/20/2026 |
| 5.0.1 | 1 | 09/20/2026 |
| 4.5.11 | 1 | 09/21/2026 |
| 4.5.10 | 2 | 09/21/2026 |
| 4.5.9 | 2 | 09/20/2026 |
| 4.5.8 | 2 | 09/20/2026 |
| 4.5.7 | 1 | 09/20/2026 |
| 4.5.6 | 1 | 09/20/2026 |
| 4.5.5 | 2 | 09/20/2026 |
| 4.5.4 | 2 | 09/20/2026 |
| 4.5.3 | 1 | 09/20/2026 |
| 4.5.2 | 1 | 09/20/2026 |
| 4.5.1 | 1 | 09/20/2026 |
| 4.0.8 | 2 | 09/20/2026 |
| 4.0.7 | 2 | 09/20/2026 |
| 4.0.6 | 3 | 09/20/2026 |
| 4.0.5 | 2 | 09/20/2026 |
| 4.0.4 | 3 | 09/20/2026 |
| 4.0.3 | 3 | 09/20/2026 |
| 4.0.2 | 1 | 09/20/2026 |
| 4.0.1 | 2 | 09/20/2026 |
| 3.5.8 | 3 | 09/20/2026 |