我正在设置一个菜单系统,要求用户从列表中选择一个广播电台,并且为了便于使用,我希望该列表位于一个名为 StationList 的文件中。那位已经排序了,但是我在选择过程中遇到了问题。
有没有办法让案例语句引用 StationList 来获取有效案例,而不必手动输入它们?我环顾四周,似乎没有直接的答案:请记住,尽管我只学了两个星期 :)
提前致谢!
例子:
i = (an element from iterating through StationList)
switch (selection)
{
case (i):
i = (int)Choice.GoodChoice;
Console.WriteLine("You chose " + selection + " radio!");
break;
case "!exit":
case "!!":
i = (int)Choice.ExitChoice;
break;
case "!info":
TitleScreen();
Console.ForegroundColor = ConsoleColor.Green;
break;
default:
Console.WriteLine("Invalid selection! Please try again!");
break;
}