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
You just can't do it this way.... Use FileStream instead.
You cant use string to read binary files, some characters won't make its way as far as I know.