gpt4 book ai didi

c# - 抛出异常停止进程

转载 作者:行者123 更新时间:2023-11-30 13:40:50 24 4
gpt4 key购买 nike

有时在 C# 中我想抛出无法处理的异常。导致进程停止的升级异常。这可能吗?

最佳答案

你可以这样做:

class BadassException : Exception
{
public BadassException(string message)
{
Environment.FailFast(message);
}
}

...

throw new BadassException("Erk!!!");

关于c# - 抛出异常停止进程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6762074/

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