using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Proxy { class Client { public static void HowToTest(string url) { IWeb web = new ProxyWeb(); string result = web.Visit(url); Console.WriteLine(result); } } }