我一直在製作一個文本冒險遊戲,並且我有這些常量包含可供玩家使用的命令。 例如:在C#中使用常量時,「變量未使用」
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"))
有沒有什麼辦法讓事情走開了「未使用變量」?我不能編輯它,因爲它是一個常量。
警告會自動消失,當你刪除用const變量的行。無論如何你都不會使用它。 – nvoigt
使用變量或將其刪除.... –
註釋掉直到您需要它? – Kjartan