I have a question in ReadBytes (int)
My code looks like this:
BinaryReader r = new BinaryReader (File.OpenRead(ARQUIVO));
byte[] arraybyte = r.ReadBytes(100000);
This 100000
that I put is because I do not know the size of the file, how can I simply make it read all the bytes of the file?