C# if 的優化


If中的if,可以這樣寫。注意順序性。

https://www.ptt.cc/bbs/Soft_Job/M.1310813814.A.028.html


if (xx)
{
   if (xxx)
   {
      if (xxxx)
      {}
   }
}
改為 (注意順序性)
if (xx)
return ;
if (xxx)
return ;
if (xxxx)
return ;

留言

熱門文章