本帖最后由 天空的风 于 2014-4-11 16:53 编辑
今天正在联系if else 出现一个警告
警告 1 加载属性“RootNamespace”失败。根命名空间的字符串必须是有效的标识符。 if.else
这是什么意思啊?具体程序如下:
string password;
Console.WriteLine("请输入密码");
password = Console.ReadLine();
if (password == "888888")
{
Console.WriteLine("密码正确!");
}
else
{
Console.WriteLine("刚才输入的密码不正确,请重新输入!");
password = Console.ReadLine();
if (password =="888888")
{
Console.WriteLine("密码正确!");
}
else
{
Console.WriteLine("密码错误!");
}
}
Console.ReadKey();
|