码迷,mamicode.com
首页 > 其他好文 > 详细

aaaaaaaaaaaaa

时间:2014-06-28 09:58:27      阅读:196      评论:0      收藏:0      [点我收藏+]

标签: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();
      }
    }
  }

 

aaaaaaaaaaaaa,布布扣,bubuko.com

aaaaaaaaaaaaa

标签:style   blog   http   color   os   name   

原文地址:http://www.cnblogs.com/mssql8/p/3811011.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!