Mega Code Archive

 
Categories / C# / Network
 

Download File Test

using System; using System.Net; public class DownloadFileTest {    public static void Main(string[] argv)    {       WebClient wc = new WebClient();       string filename = "webpage.htm";       wc.DownloadFile(argv[0], filename);       Console.WriteLine("file downloaded");    } }