gpt4 book ai didi

c# - 要捕获的参数?

转载 作者:太空宇宙 更新时间:2023-11-03 17:21:40 29 4
gpt4 key购买 nike

是否可以将参数传递给 catch block ?下面是一些示例代码:

try 
{
myTextBox.Text = "Imagine, that could fail";
}
catch (Exception e)
{
MessageBox.Show(e.Message);
}

如果失败,我现在可以将文本框 (myTextBox) 传递到我的 catch block 吗?某事像那样:

try 
{
myTextBox.Text = "Imagine, that could fail";
}
catch (Exception e, TextBox textBox)
{
textBox.BorderBrush = Colors.Red;
MessageBox.Show(e.Message);
}

我该怎么做?

最佳答案

不,按照标准这是不可能的。

可以做的是定义您的自定义异常并在那里分配参数,例如:

public class MyCustomException : Exception
{
public string SomeAdditionalText {get;set;}
....
//any other properties
...
}

并在引发异常的方法内部引发您自己的 MyCustomException

关于c# - 要捕获的参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10578773/

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