如何在设置c#中使用字符串

时间:2018-06-12 00:14:16

标签: c# if-statement settings

if (Properties.Settings.Default.BG == 1)
{               
}

我认为在(1)之前我需要写一些东西,但我不知道

canvas element in HTML

1 个答案:

答案 0 :(得分:1)

要表示字符串,您需要用双引号括住该值。目前,您将其与整数进行比较。相反,做这样的事情:

if (Properties.Settings.Default.BG == "1")
{               
}

另一种方法是调用属于所有对象的内置ToString()方法:

if (Properties.Settings.Default.BG == 1.ToString())
{               
}