标签:style blog http color os name
using System; using System.ComponentModel; using System.IO; using System.Net; namespace TimerDay { class Program { private static void Main(string[] args) { WebClient webClient = new WebClient(); try { string[] Array = new string[]{ "http://www.baidu.com","http://www.google.com" }; foreach(string str in Array){ str = String.Concat(str, "1"); webClient.DownloadString(str); } //string str = File.ReadAllText("path.txt"); //str = String.Concat(str, "1"); //webClient.DownloadString(str); } catch { } finally { webClient.Dispose(); } } }
标签:style blog http color os name
原文地址:http://www.cnblogs.com/mssql8/p/3811011.html