Downloading a file from the internet is a very common task required by almost every application your likely to build.
To accomplish this, you can use the "System.Net.WebClient" class.
The simplest use of this, using the "using" pattern, is shown below:
using (var webClient = n...