这是我不明白的事情,如果我在代码块中放入任意字符串,它会抛出一些编译时错误,但是如果我放了类似下面的东西,它就不会。
static void Main(string[] args)
{
int i = 5;
ghfhfghfghfghfhfghfhfghfghfghfhfghfghfghghttp://www.google.com
Console.WriteLine(i.ToString());
Console.ReadLine();
}
知道为什么会这样吗?我只是偶然发现它,不知道为什么,可能是我错过了什么。
答案 0 :(得分:6)
答案 1 :(得分:4)
ghfhfghfghfghfhfghfhfghfghfghfhfghfghfghghttp:
是一个标签,因为后跟:
。
然后,您可以将其与goto
statement:
static void Main(string[] args)
{
int i = 5;
ghfhfghfghfghfhfghfhfghfghfghfhfghfghfghghttp://www.google.com
Console.WriteLine(i.ToString());
Console.ReadLine();
goto ghfhfghfghfghfhfghfhfghfghfghfhfghfghfghghttp;
}