为什么这段代码编译(url不是关键字)?

时间:2016-08-23 14:42:40

标签: c# url keyword

我有这段代码:

        static void Main(string[] args)
        {
            Console.WriteLine("iexplore");
            http://www.google.com;
            Console.WriteLine("maximize"); 
            Console.ReadLine();
        }

我不清楚为什么这段代码会编译?因为我有一个网址,而且它不是c#关键字......

1 个答案:

答案 0 :(得分:5)

在C#中做

someText: 

goto制作标签,然后

//Some other text

是评论

http://www.google.com;

是标签http:,后跟评论//www.google.com;