I have this code:
static void Main(string[] args)
{
Console.WriteLine("iexplore");
http://www.google.com;
Console.WriteLine("maximize");
Console.ReadLine();
}
It's not clear to me why this code compiles? Because I have an url there and it's not a c# keyword...