I Got Code #5: Downloading linked images
There was actually a question that got me thinking – how would I implement a program that downloads pictures from a web page, that are pointed by some links? Here is a sample console application I came up with: using System; using System.Collections.Generic; using System.Net; using System.Threading; using System.IO; using System.Text.RegularExpressions; using System.Drawing; namespace ConsoleApplication [...]
