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.

link|improve this question

73% accept rate
1  
With a BinaryFork =^_^= – pst Dec 23 '11 at 7:45
feedback

2 Answers

Simply do:

byte[] allData = read1.ReadBytes(int.MaxValue);

The documentation says that it will read all bytes until the end of the stream is reached.

Update

Although 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 OutOfMemoryException.
Therefore, I would say that there isn't an elegant way. Instead, I would recommend the following variation of @iano's answer. This doesn't rely on .NET 4.

Create an extension method for BinaryReader (or Stream, the code is the same for either).

public static byte[] ReadAllBytes(this BinaryReader reader)
{
    const int bufferSize = 4096;
    using (var ms = new MemoryStream())
    {
        byte[] buffer = new byte[bufferSize];
        int count;
        while ((count = reader.Read(buffer, 0, buffer.Length)) != 0)
            destination.Write(buffer, 0, count);
        return ms.ToArray();
    }

}
link|improve this answer
1  
This gives me an OutOfMemoryException in .NET 4.0 (testing with LINQPad). Indeed, decompiling the source with Reflector reveals that ReadBytes tries to allocate a byte array with size of the given count: byte[] buffer = new byte[count];. – iano Apr 6 at 1:01
@iano You are correct. I also decompiled .NET 2.0, and it's the same. I'm gonna update my answer with a disclaimer. – Scott Rippey Apr 9 at 16:47
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:

public byte[] ReadAllBytes(Stream stream)
{
    using (var ms = new MemoryStream())
    {
        stream.CopyTo(ms);
        return ms.ToArray();
    }
}

To avoid the additional copy when calling ToArray(), you could instead return the Position and buffer, via GetBuffer().

link|improve this answer
I agree, this is probably the most elegant answer. Worth noting, though, Stream.CopyTo is only available in .NET 4. – Scott Rippey Apr 9 at 17:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.