C# 中 json 的使用
序列化对象 自定义对象 使用 JsonConvert.SerializeObject 方法,实例代码: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 using System; using Newtonsoft.Json; namespace ConsoleApp3 { class Person { [JsonProperty("name")] public string Name { get; set; } [JsonProperty("age")] public int? Age {