有一些code
在驗證後執行。
考慮一個變量SOQualityStandards = true;
c#處理返回值並執行代碼
這個變量在執行代碼之前被驗證。 我今天來檢查SOQualityStandards
一個跨越兩種方式是
if(SOQualityStandards)
{
//code to execute
}
,另一個是
if(!SOQualityStandards) return;
//code to execute
是有兩個之間的性能差異。哪一個我應該考慮。