Páginas

11/11/2010

[C#] Simulação de wGet

simulação de um wget com um método em c#

private string wGet(string url)
{

    WebClient c = new WebClient();    
    byte[] response = c.DownloadData(url);    
    return Encoding.ASCII.GetString(response);
}

Nenhum comentário: