Newtonsoft.Json 13.0.5-beta1
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 |
|---|---|
|
HslCommunication
什么是HSL?
这是一个基于工业物联网,计算机通讯的架构实现,集成了工业软件开发的大部分的基础功能实现,比如三菱PLC通讯,西门子PLC通讯,欧姆龙PLC通讯,modbus通讯,AB PLC,基恩士PLC,台达PLC,松下PLC,GE PLC通讯等等,这些通讯全部进行了多语言的实现,当然,主打的 .net 库的功能集成还更加的强大,除此之外,还实现了跨程序,跨语言,跨平台的通讯,让你不再纠结于使用windows还是 linux系统,实现了日志功能,流水号生成功能,邮件发送功能,傅立叶变换功能,等等,将来会集成更多的工业环境常见功能的实现。 为了不让工业4.0只停留在口号上,万丈高楼平地起,而基石就是HSL。
HSL能干什么?
HSL能将工业生产现场的设备进行万物互联,将数据在底层自由的传输,无论是主动的还是被动的,无论你的采集系统是什么(通常采集系统为windows电脑,或是嵌入式系统,或是基于linux的盒子), 都可以实现数据的随意传输,方便快速实现强大,实时,高响应的健壮系统,无论您是构建C/S系统,还是B/S系统,还是C-B-S-A(集成桌面客户端,浏览器,安卓)混合系统,都是快速而且低成本的实现, 只要拥有了工业现场的一手数据,即可以搭建强大的实时监视功能的软件,生产报表及自动化排产的软件,各种工艺参数历史追踪的软件,基于数据经验的机器学习软件,以及全功能等等。 顺便聊聊 ,传统的工业模式都是采购现成的工业软件,包括上位机软件及MES系统,而忽视了自身的研发能力。对于一些行业标准的功能软件来说,比如ERP系统,财务软件,这些可以直接采购即可, 但是对于上位机及MES系统而言,各个企业的实际需求千差万别,难以有通用的场景,而目前的现状都是花大钱办小事,所以在此处,给出一条面向未来的模式实现:对于生产企业而言, 基于HSL开发企业级MES系统实现,作为数据的核心仓库中心,及业务逻辑处理中心;对于设备供应商而言,基于HSL开发上位机软件系统,快速且方便的将数据分发至客户的MES系统,进行协同工作。
企业合作: 欢迎企业客户联系合作,包括开发新的协议支持,培训及指导上位机软件及MES系统的开发,指导工厂智能化升级改造及信息化团队建设。
|
30 |
|
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/fa72fa61b0d822ea8a3fbeb96f668340419ab5cd.
|
25 |
|
TencentCloudSDK
Tencent Cloud API 3.0 SDK for .NET
|
23 |
|
Consul
Consul.NET is a .NET client library for the Consul HTTP API
|
22 |
|
TencentCloudSDK
Tencent Cloud API 3.0 SDK for .NET
|
21 |
|
Consul
.NET API for Consul (http://www.consul.io/)
|
20 |
|
Consul
Consul.NET is a .NET client library for the Consul HTTP API
|
20 |
|
AlibabaCloud.TeaUtil
Alibaba Cloud TeaUtil SDK for .NET
|
20 |
|
Microsoft.AspNet.Mvc.Core
The core runtime components of ASP.NET MVC.
|
20 |
|
TencentCloudSDK
Tencent Cloud API 3.0 SDK for .NET
|
20 |
|
Z.Expressions.Eval
C# Eval Expression is an Eval function. You can Evaluate, Compile and Execute C# code at runtime.
Example: https://dotnetfiddle.net/COq6FC
Include free and prime features.
|
20 |
|
Butterfly.Client
A .NET client for Butterfly.
|
20 |
|
NuGet.Packaging
NuGet's understanding of packages. Reading nuspec, nupkgs and package signing.
|
20 |
|
Z.Expressions.Eval
Evaluate, Compile and Execute C# code at runtime.
Support: Dynamic LINQ, Extension Method, Expando Object, and more!
Online Example: https://dotnetfiddle.net/COq6FC
Include free and prime features.
|
19 |
|
StreamJsonRpc
A cross-platform .NET portable library that implements the JSON-RPC wire protocol and can use System.IO.Stream or WebSocket so you can use it with any transport.
|
19 |
|
Consul
.NET API for Consul (http://www.consul.io/)
|
19 |
.NET Framework 2.0
- No dependencies.
.NET Standard 2.0
- No dependencies.
.NET 6.0
- No dependencies.
.NET Standard 1.3
- System.Xml.XmlDocument (>= 4.3.0)
- System.Runtime.Serialization.Formatters (>= 4.3.0)
- System.ComponentModel.TypeConverter (>= 4.3.0)
- NETStandard.Library (>= 1.6.1)
- Microsoft.CSharp (>= 4.3.0)
- System.Runtime.Serialization.Primitives (>= 4.3.0)
.NET Standard 1.0
- System.ComponentModel.TypeConverter (>= 4.3.0)
- NETStandard.Library (>= 1.6.1)
- Microsoft.CSharp (>= 4.3.0)
- System.Runtime.Serialization.Primitives (>= 4.3.0)
.NET Framework 4.5
- No dependencies.
.NET Framework 4.0
- No dependencies.
.NET Framework 3.5
- No dependencies.
| Version | Downloads | Last updated |
|---|---|---|
| 13.0.5-beta1 | 2 | 2026/2/28 |
| 13.0.4 | 7 | 2025/11/2 |
| 13.0.3 | 10 | 2025/5/25 |
| 13.0.2 | 11 | 2025/6/11 |
| 13.0.1 | 14 | 2025/6/6 |
| 12.0.3 | 7 | 2025/4/17 |
| 12.0.2 | 9 | 2025/6/10 |
| 12.0.1 | 5 | 2025/6/8 |
| 11.0.2 | 6 | 2025/4/17 |
| 11.0.1 | 6 | 2025/11/1 |
| 10.0.3 | 5 | 2025/4/17 |
| 10.0.2 | 11 | 2025/6/10 |
| 10.0.1 | 6 | 2025/6/7 |
| 9.0.1 | 6 | 2025/6/9 |
| 8.0.3 | 5 | 2025/11/2 |
| 8.0.2 | 5 | 2025/6/7 |
| 8.0.1 | 6 | 2025/6/16 |
| 7.0.1 | 4 | 2025/11/2 |
| 6.0.8 | 4 | 2025/11/3 |
| 6.0.7 | 7 | 2025/6/9 |
| 6.0.6 | 5 | 2025/11/2 |
| 6.0.5 | 6 | 2025/6/7 |
| 6.0.4 | 5 | 2025/11/3 |
| 6.0.3 | 5 | 2025/6/7 |
| 6.0.2 | 5 | 2025/11/2 |
| 6.0.1 | 5 | 2025/11/2 |
| 5.0.8 | 5 | 2025/10/11 |
| 5.0.7 | 10 | 2025/6/10 |
| 5.0.6 | 4 | 2025/6/8 |
| 5.0.5 | 8 | 2025/6/12 |
| 5.0.4 | 5 | 2025/6/7 |
| 5.0.3 | 5 | 2025/11/2 |
| 5.0.2 | 6 | 2025/5/27 |
| 5.0.1 | 6 | 2025/11/2 |
| 4.5.11 | 5 | 2025/6/7 |
| 4.5.10 | 5 | 2025/6/7 |
| 4.5.9 | 5 | 2025/6/7 |
| 4.5.8 | 6 | 2025/11/3 |
| 4.5.7 | 6 | 2025/6/8 |
| 4.5.6 | 5 | 2025/6/8 |
| 4.5.5 | 5 | 2025/5/28 |
| 4.5.4 | 5 | 2025/6/7 |
| 4.5.3 | 11 | 2025/6/10 |
| 4.5.2 | 5 | 2025/11/3 |
| 4.5.1 | 14 | 2025/6/10 |
| 4.0.8 | 9 | 2025/10/20 |
| 4.0.7 | 5 | 2025/6/8 |
| 4.0.6 | 8 | 2025/6/9 |
| 4.0.5 | 5 | 2025/6/8 |
| 4.0.4 | 4 | 2025/6/7 |
| 4.0.3 | 4 | 2025/6/7 |
| 4.0.2 | 5 | 2025/11/2 |
| 4.0.1 | 4 | 2025/6/7 |
| 3.5.8 | 12 | 2025/6/10 |