在这个代码示例中,有没有办法从catch块继续外部循环?
while
{
// outer loop
while
{
// inner loop
try
{
throw;
}
catch
{
// how do I continue on the outer loop from here?
continue;
}
}
}
Run Code Online (Sandbox Code Playgroud)