I\'m trying to read a file that I have a web address for into a byte array. I\'ve been using File.ReadAllBytes to read files locally and I\'ve been unable to f
File.ReadAllBytes
byte[] response = new System.Net.WebClient().DownloadData(url);