class Program { static void Main(string[] args) { Console.WriteLine("Hello World!"); Console.WriteLine(TestSwitch("0371")); Console.WriteLine(TestSwitch("071")); Console.ReadKey(); } public static string TestSwitch(string code) => code switch { "0371" => "鄭州", "0378" => "開封", "0379" => "洛陽", _ => "其他地區" }; }