Пример #1
0
		static void Main(string[] args)
		{
			GetPage module = new GetPage();
			String page;
			if (args.Length == 0)
				page = "http://www.httprecipes.com/1/3/time.php";
			else
				page = args[0];
			module.Go(page);
		}
Пример #2
0
        static void Main(string[] args)
        {
            GetPage module = new GetPage();
            String  page;

            if (args.Length == 0)
            {
                page = "http://www.httprecipes.com/1/3/time.php";
            }
            else
            {
                page = args[0];
            }
            module.Go(page);
        }