这是什么,我不明白,如果我在代码块中放入任意字符串,它会抛出一些编译时错误,但如果我放入类似下面的内容,它不会。
static void Main(string[] args)
{
int i = 5;
ghfhfghfghfghfhfghfhfghfghfghfhfghfghfghghttp://www.google.com
Console.WriteLine(i.ToString());
Console.ReadLine();
}
知道为什么会这样吗?我只是偶然发现它,不知道为什么,可能是我错过了什么。