Newtonsoft.Json 13.0.3
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.
|
58 |
|
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
|
17 |
|
Microsoft.TestPlatform.TestHost
Testplatform host executes the test using specified adapter.
|
11 |
|
Microsoft.EntityFrameworkCore.Design
Shared design-time components for Entity Framework Core tools.
|
3 |
|
Microsoft.CodeAnalysis.Workspaces.MSBuild
.NET Compiler Platform ("Roslyn") support for analyzing MSBuild projects and solutions. This should be used with at least one
of the following packages to add the appropriate language support:
- Microsoft.CodeAnalysis.CSharp.Workspaces
- Microsoft.CodeAnalysis.VisualBasic.Workspaces
More details at https://aka.ms/roslyn-packages
This package was built from the source at https://github.com/dotnet/roslyn/commit/6c4a46a31302167b425d5e0a31ea83c9a9aa1d09.
|
2 |
|
Microsoft.EntityFrameworkCore.Design
Shared design-time components for Entity Framework Core tools.
|
2 |
|
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/4e6235b8f9af12335ecd58a0a06b8f4105af2de0
|
2 |
|
Microsoft.AspNetCore.JsonPatch
ASP.NET Core support for JSON PATCH.
|
2 |
|
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/c78f4a816c0c6a978a801a05a31dce9013e099e2
|
2 |
|
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/54e8b61777d42d2b10744d1987438ee5b8c0b24d
|
2 |
|
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/31d685b2d9a86ca1243014d175a3da813f78e428
|
2 |
|
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/417d650029c720dbd2138bcafbb78e2e4ff31bff
|
2 |
|
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
|
2 |
.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 | 0 | 09/21/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 | 1 | 09/21/2026 |
| 12.0.1 | 1 | 09/21/2026 |
| 11.0.2 | 1 | 09/21/2026 |
| 11.0.1 | 1 | 09/20/2026 |
| 10.0.3 | 74 | 11/21/2025 |
| 10.0.2 | 1 | 09/21/2026 |
| 10.0.1 | 1 | 09/21/2026 |
| 9.0.1 | 33 | 09/16/2025 |
| 8.0.3 | 1 | 09/20/2026 |
| 8.0.2 | 1 | 09/20/2026 |
| 8.0.1 | 2 | 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 | 1 | 09/20/2026 |
| 6.0.4 | 2 | 09/20/2026 |
| 6.0.3 | 1 | 09/20/2026 |
| 6.0.2 | 1 | 09/20/2026 |
| 6.0.1 | 1 | 09/20/2026 |
| 5.0.8 | 1 | 09/20/2026 |
| 5.0.7 | 2 | 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 | 1 | 09/20/2026 |
| 5.0.2 | 1 | 09/20/2026 |
| 5.0.1 | 1 | 09/20/2026 |
| 4.5.11 | 1 | 09/21/2026 |
| 4.5.10 | 1 | 09/21/2026 |
| 4.5.9 | 1 | 09/20/2026 |
| 4.5.8 | 1 | 09/20/2026 |
| 4.5.7 | 1 | 09/20/2026 |
| 4.5.6 | 1 | 09/20/2026 |
| 4.5.5 | 1 | 09/20/2026 |
| 4.5.4 | 1 | 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 | 1 | 09/20/2026 |
| 4.0.7 | 1 | 09/20/2026 |
| 4.0.6 | 2 | 09/20/2026 |
| 4.0.5 | 1 | 09/20/2026 |
| 4.0.4 | 2 | 09/20/2026 |
| 4.0.3 | 2 | 09/20/2026 |
| 4.0.2 | 1 | 09/20/2026 |
| 4.0.1 | 1 | 09/20/2026 |
| 3.5.8 | 1 | 09/20/2026 |