0

我一直在制作一个文字冒险游戏,我有这些常量,其中包含玩家可用的命令。例如:

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")) 

有没有办法让“变量未使用”的事情消失?我无法编辑它,因为它是一个常数。

4

1 回答 1

1

您可以禁止显示此警告:

1- 由pargma

将此行放在类文件的顶部:

#pragma warning disable 0169

2-通过项目的设置

  1. 在解决方案资源管理器中,选择要禁止显示警告的项目。

  2. 在菜单栏上,选择查看、属性页。

  3. 选择构建页面。

  4. 在抑制警告框中,指定要抑制的警告的错误代码,用分号分隔,然后重新生成解决方案。

(您需要的警告代码是 0169)

于 2013-10-04T12:21:47.157 回答