using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net; using System.Threading.Tasks; namespace _2chparse { class Program { static void Main() { string remoteURI = "https://2...content-available-to-author-only...h.hk/"; string fileName = "2chthread.html"; try { WebClient _webClient = new WebClient(); _webClient.DownloadFile(remoteURI, fileName); Console.WriteLine("Successful!"); } catch { Console.WriteLine("Failed"); } Console.ReadLine(); } } }