我的代码看起来像这样:
if(condition1)
{
//do some stuff
if(condition2)
{
//do some other stuff
if(condition3)
{
//do some more stuff
if(condition4)
{
//you probably got the point by now...
}
}
}
而且我想将其重新分解为看起来更好且更易于遵循的代码。
到目前为止,我得到的最好的是:
do{
if(!condition1){break;}
//do some stuff
if(!condition2){break;}
//do some other stuff
if(!condition3){break;}
//do some more stuff
if(!condition4){break;}
//you probably got the point by now...
}while(false);
我的问题是:
我还想念另一种更好的方法吗?
我认为这无关紧要,但我正在使用 C# ...