I have to read a ".bin" file fully and pass the stream to a function. I tried it with BinaryReader which worked fine for reading values byte by byte, I want to pass the whole file as a string stream to my function. Usage of StreamReader gives garbage information, it looks like StreamReader can't read a bin file properly.
Thanks in advance.
Don't pass binary data around as a
string
. Instead, usebyte[]
which is detached from anyStream
you might have read it from. It's correct thatStreamReader
is for reading text, so you need to useBinaryReader
or just theStream.Read()
method directly. If the stream you're reading from allows seeking (exposed through theCanSeek
property), you can discover itsLength
and read all bytes from the stream in one go.If, however, the stream is very large or doesn't support seeking, you need to be a bit more elaborate when reading by doing it in chunks until the
Read()
method returns0
(which means the end of the stream has been reached).There is no
StreamReader.ReadToEnd()
equivalent for reading binary data, but defining one as an extension method isn't very hard.