C# 新语法 switch 的简单写法
// C# 中的新语法 switch 的简写
string str = "123";
string res = str switch
{
"1" => "1",
"2" => "2",
"3" => "3",
_ => "default",
};