Is there an elegant to emulate the StreamReader.ReadToEnd method with BinaryReader? Perhaps to put all the bytes into a byte array?
I do this:
read1.ReadBytes((int)read1.BaseStream.Length);
...but there must be a better way.
|
Is there an elegant to emulate the I do this:
...but there must be a better way.
| |||||
feedback
|
|
Simply do:
The documentation says that it will read all bytes until the end of the stream is reached. UpdateAlthough this seems elegant, the implementation (in .NET 2, 3.5, and 4) allocates a full-size byte array for the data. This will probably cause an Create an extension method for
| |||||||
feedback
|
|
There is not an easy way to do this with BinaryReader. If you don't know the count you need to read ahead of time, a better bet is to use MemoryStream:
To avoid the additional copy when calling | |||
feedback
|