# ![Logo](https://raw.githubusercontent.com/JamesNK/Newtonsoft.Json/master/Doc/icons/logo.jpg) Json.NET
[![NuGet version (Newtonsoft.Json)](https://img.shields.io/nuget/v/Newtonsoft.Json.svg?style=flat-square)](https://www.nuget.org/packages/Newtonsoft.Json/)
[![Build status](https://dev.azure.com/jamesnk/Public/_apis/build/status/JamesNK.Newtonsoft.Json?branchName=master)](https://dev.azure.com/jamesnk/Public/_build/latest?definitionId=8)
Json.NET is a popular high-performance JSON framework for .NET
## Serialize JSON
```csharp
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
```csharp
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
```csharp
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
- [Homepage](https://www.newtonsoft.com/json)
- [Documentation](https://www.newtonsoft.com/json/help)
- [NuGet Package](https://www.nuget.org/packages/Newtonsoft.Json)
- [Release Notes](https://github.com/JamesNK/Newtonsoft.Json/releases)
- [Contributing Guidelines](https://github.com/JamesNK/Newtonsoft.Json/blob/master/CONTRIBUTING.md)
- [License](https://github.com/JamesNK/Newtonsoft.Json/blob/master/LICENSE.md)
- [Stack Overflow](https://stackoverflow.com/questions/tagged/json.net)
没有合适的资源?快使用搜索试试~ 我知道了~
C# Winform WPF 自动更新(基于FTP)
共123个文件
cs:38个
cache:10个
txt:10个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
5星 · 超过95%的资源 106 下载量 37 浏览量
2023-06-15
18:18:12
上传
评论 13
收藏 5.9MB ZIP 举报
温馨提示
友情提醒:在tao宝下载本资源是旧版的,注意不要受骗 当前资源在后续更新会以私信的方式发送,已经购买资源的朋友请不要取关,谢谢了 帖子地址: https://blog.csdn.net/qq_38693757/article/details/131223450?spm=1001.2014.3001.5502 具体的介绍请看帖子,这里文字放不下了 2023.07.25 添加了本地黑名单文件夹功能 2023.12.30 进行了大幅度的优化,同时改动了一部分功能,具体更新内容参考帖子 2024.01.05 优化了部分代码 2024.01.13 优化了部分代码 2024.06.18 添加了更新界面 修复了 UNIX/Linux FTP 服务器 无法下载的bug 2024.06.20 添加了配置文件生成工具,更新工具读取配置文件来检测那些文件需要更新,大大的提高了更新速度 有疑问欢迎私信我
资源推荐
资源详情
资源评论
收起资源包目录
C# Winform WPF 自动更新(基于FTP) (123个子文件)
Starter.csproj.AssemblyReference.cache 8KB
ConfigGenerate.csproj.AssemblyReference.cache 7KB
DesignTimeResolveAssemblyReferencesInput.cache 2KB
DesignTimeResolveAssemblyReferencesInput.cache 2KB
DesignTimeResolveAssemblyReferences.cache 137B
DesignTimeResolveAssemblyReferences.cache 137B
Starter.csproj.GenerateResource.cache 126B
ConfigGenerate.csproj.GenerateResource.cache 126B
Starter.csproj.CoreCompileInputs.cache 66B
ConfigGenerate.csproj.CoreCompileInputs.cache 66B
FTPAccount.config 239B
App.config 187B
Starter.exe.config 187B
App.config 187B
ConfigGenerate.exe.config 187B
packages.config 143B
packages.config 143B
FTPManager.cs 13KB
Matching.cs 10KB
Form1.Designer.cs 8KB
Form1.cs 7KB
Form1.Designer.cs 7KB
Tool.cs 4KB
ReadFile.cs 3KB
Form1.cs 3KB
ReadFileManager.cs 3KB
Tool.cs 3KB
Resources.Designer.cs 3KB
Resources.Designer.cs 3KB
ConfigHelper.cs 2KB
FileHandle.cs 2KB
BlacklistManager.cs 1KB
LogShow.cs 1KB
LogShow.cs 1KB
ReadBlacklist.cs 1KB
AssemblyInfo.cs 1KB
AssemblyInfo.cs 1KB
MatchInfo.cs 1KB
Settings.Designer.cs 1KB
Settings.Designer.cs 1KB
ConfigManager.cs 829B
ReadConfig.cs 735B
Program.cs 535B
Program.cs 528B
DownloadFileInfo.cs 503B
FileInfo1.cs 429B
FileInfo1.cs 429B
UpdateResultInfo.cs 419B
ConfigInfo.cs 326B
ConfigInfo.cs 324B
FileDataInfo.cs 312B
FileDataInfo.cs 312B
.NETFramework,Version=v4.8.AssemblyAttributes.cs 210B
.NETFramework,Version=v4.8.AssemblyAttributes.cs 210B
ReadStatus.cs 74B
Starter.csproj 5KB
ConfigGenerate.csproj 4KB
Newtonsoft.Json.dll 696KB
Newtonsoft.Json.dll 695KB
Newtonsoft.Json.dll 695KB
Newtonsoft.Json.dll 695KB
Newtonsoft.Json.dll 689KB
Newtonsoft.Json.dll 683KB
Newtonsoft.Json.dll 665KB
Newtonsoft.Json.dll 571KB
Newtonsoft.Json.dll 567KB
Newtonsoft.Json.dll 504KB
Starter.exe 34KB
Starter.exe 34KB
ConfigGenerate.exe 20KB
ConfigGenerate.exe 20KB
Starter.csproj.dtbcache.json 5KB
ConfigGenerate.csproj.dtbcache.json 4KB
DocumentLayout.json 3KB
README.md 2KB
LICENSE.md 1KB
Newtonsoft.Json.13.0.3.nupkg 2.33MB
.signature.p7s 24KB
Starter.pdb 138KB
Starter.pdb 138KB
ConfigGenerate.pdb 76KB
ConfigGenerate.pdb 76KB
packageIcon.png 9KB
Starter.Properties.Resources.resources 180B
Starter.Form1.resources 180B
ConfigGenerate.Properties.Resources.resources 180B
ConfigGenerate.Form1.resources 180B
Form1.resx 6KB
Form1.resx 6KB
Resources.resx 5KB
Resources.resx 5KB
Settings.settings 249B
Settings.settings 249B
FTP自动更新.sln 2KB
.suo 165KB
Starter.csproj.FileListAbsolute.txt 4KB
ConfigGenerate.csproj.FileListAbsolute.txt 4KB
LocalFileBlacklist.txt 81B
FTPUrl.txt 29B
UpdatePath.txt 25B
共 123 条
- 1
- 2
熊思宇
- 粉丝: 4w+
- 资源: 41
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功
- 1
- 2
- 3
- 4
- 5
- 6
前往页