C# - List all the links in a website.
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Net; using System.Text.RegularExpressions; namespace ProgrammingDotNet { class Program { public static void Main(string[] args) { StreamReader reader = null; try { WebRequest request = WebRequest.Create("http://www.techexams.net/"); WebResponse response = request.GetResponse(); reader = new StreamReader(response.GetResponseStream()); string content = reader.ReadToEnd(); ...