gpt4 book ai didi

c# - 如何从其构造函数设置自定义异常类的 InnerException

转载 作者:IT王子 更新时间:2023-10-29 03:54:59 25 4
gpt4 key购买 nike

当我在该对象的构造函数中时,如何设置 Exception 对象的 InnerException 属性?这归结为查找和设置没有 setter 的属性的支持字段。

顺便说一句:我看过这个evain.net - Getting the field backing a property using Reflection但如果可能,寻找非基于 IL 的解决方案。

Exception 的构造函数是创建Exception 类型的地方,所以我不能使用基类构造函数MyException() 来调用它:base( ...)

最佳答案

您通过调用基本构造函数来设置内部异常:

public MyException(string message, Exception innerException)
: base(message, innerException) {...}

如果您需要运行一些代码来获取异常,请使用静态方法:

public MyException(SomeData data) : base(GetMessage(data), GetInner(data)) {...}
static Exception GetInner(SomeData data) {...} // <===== your type creation here!
static string GetMessage(SomeData data) {...}

关于c# - 如何从其构造函数设置自定义异常类的 InnerException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1466800/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com