- 积分
- 10
- 在线时间
- 3 小时
- 主题
- 5
- 注册时间
- 2019-2-25
- 帖子
- 7
- 最后登录
- 2019-2-28
- 帖子
- 7
- 软币
- 102
- 在线时间
- 3 小时
- 注册时间
- 2019-2-25
|
Newtonsoft.Json 是一款 .NET 平台中开源的 JSON 序列化和反序列化类库,示例代码:
public class Account{ public string Email { get; set; } public bool Active { get; set; } public DateTime CreatedDate { get; set; } public IList<string> Roles { get; set; }}Account account = new Account{ Email = "james@example.com", Active = true, CreatedDate = new DateTime(2013, 1, 20, 0, 0, 0, ateTimeKind.Utc), Roles = new List<string> { "User", "Admin" }};string json = JsonConvert.SerializeObject(account, Formatting.Indented);// {// "Email": "james@example.com",// "Active": true,// "CreatedDate": "2013-01-20T00:00:00Z",// "Roles": [// "User",// "Admin"// ]// }Console.WriteLine(json);
|
评分
-
查看全部评分
|