この次のエラーが発生する理由がわかりません。
コントロールは、1 つのケース ラベル ('case "h":') から別のケース ラベルに移行できません (CS0163)
H と S のみ - 非常に奇妙です。
switch(myChoice)
{
case "K":
case "k":
Console.WriteLine("You have chosen the Kanto region");
break;
case "O":
case "o":
Console.WriteLine("You have chosen the Orange Islands");
break;
case "J":
case "j":
Console.WriteLine("You have chosen the Johto region");
break;
case "H":
case "h":
Console.WriteLine("You have chosen the Hoenn region");
case "S":
case "s":
Console.WriteLine("You have chosen the Sinoh region");
case "U":
case "u":
Console.WriteLine("You have chosen the Unova region");
break;
case "R":
case "r":
Console.WriteLine("Return");
break;
default:
Console.WriteLine("{0} is not a valid choice", myChoice);
break;
}