Skip to content

Instantly share code, notes, and snippets.

@donma
Created October 28, 2025 05:27
Show Gist options
  • Select an option

  • Save donma/1c295532e94569448aecdab432940627 to your computer and use it in GitHub Desktop.

Select an option

Save donma/1c295532e94569448aecdab432940627 to your computer and use it in GitHub Desktop.
var userType = "";
var result = userType switch
{
//要使用 when 關鍵字來使用
var t when string.IsNullOrEmpty(t) => "DEFAULT",
"PLUS" => "CALL_PLUS",
"PREMIUM" => "CALL_PREMIUM",
"Ultimate" => "CALL_ULTIMATE",
_ => "CALL_DEFAULT"
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment