我试图反序列化从Exception类派生的对象:
@H_502_10@[Serializable] public class Error : Exception,ISerializable { public string ErrorMessage { get; set; } public Error() { } }
错误error = JsonConvert.DeserializeObject<错误>(“json error obj string”);
它给我错误:
ISerializable类型’type’没有有效的构造函数.