I am trying to download a data file to my application the file can be viewed here:
http://www.net-flyer.net/DataFeed/vatsim-data.txt
here is my code:
string address = "http://www.net-flyer.net/DataFeed/vatsim-data.txt";
string filename = "vsd.txt";
WebClient client = new WebClient();
client.DownloadFile(address,filename);
It downloads the file like I want, but there are no line breaks in the downloadedfile, it is just one continous line of text. Does anyone know what I'm doing wrong?