I\'ve tried reading a JPG file using the StreamReader class\' ReadToEnd() method which returns a string.
StreamReader
ReadToEnd()
For some reason though, when I wri
Unfortunately there is a serious problem with class names in System.IO namespace. StreamReader is designed to read\write from\to text files. You should use FileStream for binary files as @goodwill suggested