我一直在制作一个文字冒险游戏,我有这些常量,其中包含玩家可用的命令。例如:
const string ConScenChoiceOne = "hit monkey talk to monkey suicide go inside";
string conchoice1;
Console.WriteLine("You arrive at a temple dedicated to the monkey god.");
Console.WriteLine("Outside is a monkey, presumably guarding the place.");
Console.WriteLine("What do you do?");
Console.Write(">");
conchoice1 = Console.ReadLine();
if (conchoice1.Contains("hit monkey"))
有没有办法让“变量未使用”的事情消失?我无法编辑它,因为它是一个常数。