たとえば、class_に文字列プロパティがあります
[DataMember]
[JsonProperty(PropertyName = "email")]
[StringLength(40, ErrorMessage = "The Mobile value cannot exceed 40 characters. ")]
public string Email { get; set; }
Convert.Deserialize プロセス中に何らかの理由で、この値が JSON オブジェクトで設定されていない場合に備えて、null の代わりにこのプロパティに空の文字列が必要です。どうやってするの ?