是否有可能在C#中有一個開關,它檢查值是空還是空不是「」但是String.Empty?我知道我能做到這一點: switch (text)
{
case null:
case "":
break;
}
是否有更好的東西,因爲我不希望有一個大名單IF語句? I'mm試圖取代: if (String.IsNullOrEmpty(text))
blah;
我正在VB.NET中編寫一些使用switch語句的代碼,但在其中一種情況下需要跳轉到另一個塊。在C#中它看起來像這樣: switch (parameter)
{
case "userID":
// does something here.
case "packageID":
// does something here.
case "mvrT