假设要序列化一个类:
class Person { public int Id; public string Name; public int Age; public string MMOP; }
在使用Newtonsoft.Json.JsonConvert.SerializeObject(p)时,该如何不使用JsonProperty和DataMember特性,而在代码中指定要序列化的字段序列化实例?
相关分类