📅  最后修改于: 2022-03-11 14:49:02.044000             🧑  作者: Mango
public void Method()
{
do
{
if (something)
{
// some code
if (something2)
{
break;
}
return;
}
break;
}
while( false );
// The code I want to go if the second `if` is true
}