例如,我的 class_ 中有字符串属性
[DataMember]
[JsonProperty(PropertyName = "email")]
[StringLength(40, ErrorMessage = "The Mobile value cannot exceed 40 characters. ")]
public string Email { get; set; }
由于某种原因,在 Convert.Deserialize 过程中,我需要在此属性中使用空字符串,而不是在 null 上,以防此值未在 JSON 对象中设置。怎么做 ?