让我们看看这个简单的 try/catch 示例...
try
{
// User inputs path of a file
if(!ValidPath)
throw new InvalidPathException();
}
catch InvalidPathException e
{
// Log error
// Re-throw the error.
throw;
}
几个问题。两者可能都是简单的答案。
最佳答案
关于c# - 尝试/捕捉 - 回到最初的尝试,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5665211/