Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As discussed before, when a BinaryReader or BinaryWriter gets closed, its underlying Stream get closed as well (aargh). Consider this situation: a routine R is passed a MemoryStream, say M; I would like to write some stuff to M and then pass it to another routine for more processing (not necessarily writing). For convenience, I'd like to wrap M in a BinaryWriter to do my writing. After writing, I'm done with the BinaryWriter but not with M.

void R(MemoryStream M)
{
    using (B = new BinaryWriter(M))
    {
        // write some stuff using B
    }

    S(M);  // now pass M to another routine for further processing
}

But, I can't dispose of the BinaryStream without closing M.

Q: Is there a way to do any of the following?

  • extract the underlying byte[] from a MemoryStream,
  • clone a Stream
  • reopen a Stream after it's been closed
share|improve this question
I don't know C#, but in Java, you'd simply just abandon without closing the BinaryWriter. Doesn't the using{...} construct force closing? Then don't use that construct! – Adrian Pronk Oct 27 '09 at 21:47
P.S. But you do need to ensure you flush the BinaryWriter before you abandon it. – Adrian Pronk Oct 27 '09 at 21:48

7 Answers

You should better get the underlying byte[] buffer using

byte[] buffer = ms.GetBuffer();

And then copy the byte data using the Array.Copy() method. You are free to create a new stream with it.

share|improve this answer
I don't understand why you're saying it's better to use GetBuffer and then make a copy using Array.Copy. If I wanted a copy I'd just use ToArray. – I. J. Kennedy Oct 29 '09 at 23:28
From MSDN doc This method omits unused bytes in MemoryStream from the array. To get the entire buffer, use the GetBuffer method. msdn.microsoft.com/en-us/library/… – Ricky AH Oct 30 '09 at 6:51
The above "This Method" refers to the MemoryStream.ToArray() – Ricky AH Oct 30 '09 at 6:53

You can use things like the MiscUtil.IO.NonClosingStreamWrapper in MiscUtil, which wraps a Stream and simply ignores Close/Dispose requests. For just this purpose.

void R(MemoryStream M)
{
    using (B = new BinaryWriter(new NonClosingStreamWrapper(M)))
    {
        // write some stuff using B
    }

    S(M);  // now pass M to another routine for further processing
}
share|improve this answer

You can:

  • Call M.ToArray() to get the stream as an array of bytes.
  • Subclass BinaryWriter and override the Dispose method to prevent closing of the child stream
share|improve this answer
+1 specifically for the Dispose override. – Orion Adrian Oct 27 '09 at 21:23
Can't you just avoid calling close/Dispose? – Adrian Pronk Oct 27 '09 at 21:51
up vote 2 down vote accepted

Thanks to several who suggested ToArray, I was led to right answer, which is `M.GetBuffer'. ToArray is not too bad, but it

  • makes a copy
  • gets only part of the buffer

GetBuffer just grabs a reference to the underlying byte[], which is what I'm after.

share|improve this answer
Which was pointed out in my answer ;) – Ricky AH Oct 27 '09 at 21:25

Just to add it in here, a very simple solution would be not to Dispose() the writer.

void R(MemoryStream M)
{
    B = new BinaryWriter(M);

    // write some stuff using B        
    B.Flush();
    S(M);  // now pass M to another routine for further processing
}

Now you only have to worry about keeping B in scope, which it will be during R().

This may not be the best solution here, but it is worth noting that the Readers and Writers don't need Disposing themselves.

share|improve this answer
Lets hope BinaryWriter doesn't buffer anything, then... – Marc Gravell Oct 27 '09 at 21:44
But make sure you call B.flush() after you've finished with it in case it hasn't pushed everything through to M. (That's what would be needed in Java, no idea about C#) – Adrian Pronk Oct 27 '09 at 21:50
OK, Adrian & Marc, I forgot to Flush(). – Henk Holterman Oct 27 '09 at 21:52

A somewhat naive approach is to use

byte buf[] = MemoryStream.ToArray();

To copy the stream contents to a byte array. You can turn it back into a stream with

MemoryStream ms = new MemoryStream(buf);
share|improve this answer
Worth emphasising : this method works on a closed stream as well as a live one. – Steve Gilham Oct 27 '09 at 21:11

Accoring to this M.Clone(); should work. But i may be wrong...

share|improve this answer
-1 for posting to a website which doesn't allow viewing it's contents for free, which is pretty much useless – Ion Todirel May 7 '10 at 12:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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