案情如下:
您有一个名为 FullScreenEnabled 的 bool 属性。您输入某个方法,并且如果 FullScreenEnabled 为真,则执行此方法中的代码。您在日常编程中使用以下两种方法中的哪一种:
private bool FullScreenEnabled { get; set; }
// Check if FullScreenEnabled is false and return;
private void Case1()
{
if (FullScreenEnabled == false)
{
return;
}
// code to be executed goes here!
}
// Surround the code by an if statement.
private void Case2()
{
if (FullScreenEnabled)
{
// code to be executed goes here!
}
}
最佳答案
private void MyMethod(bool arg){
if(arg)
return;
//do stuff
};
(用于投票)
关于c# - 使用终止子句时的最佳做法是什么...请参阅说明 :),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/145617/