Created
October 28, 2025 05:27
-
-
Save donma/1c295532e94569448aecdab432940627 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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