4
I have a question in Readbytes(int)
My code is like this:
BinaryReader r = new BinaryReader (File.OpenRead(ARQUIVO));
byte[] arraybyte = r.ReadBytes(100000);
That one 100000
which I put is because I don’t know the file size, as I can simply make it read all bytes of the file?