如果发生特殊异常,我需要运行相同的代码。所以我尝试使用goto
,但使用语句我无法在语句定位goto
之前移动到一行goto
示例代码,
try
{
top:
//Code
}
catch (Exception ex)
{
if (ex.Message.Substring(1, 5) == "error")
{
goto top: //Error - Can not resolve symbol `top`
goto bottom: //OK
}
}
bottom:
//Code
}
如何执行前一行代码?