vote up 9 vote down star
2

I have the following code:

MemoryStream foo(){
    MemoryStream ms = new MemoryStream();
    // write stuff to ms
    return ms;
}

void bar(){
    MemoryStream ms2 = foo();
    // do stuff with ms2
    return;
}

Is there any chance that the MemoryStream that I've allocated will somehow fail to be disposed of later?

I've got a peer review insisting that I manually close this, and I can't find the information to tell if he has a valid point or not.

flag

1  
Ask your reviewer exactly why he thinks you should close it. If he talks about general good practice, he's probably being smart. If he talks about releasing memory earlier, he's wrong. – Jon Skeet Oct 24 '08 at 16:41

10 Answers

vote up 7 vote down check

If something is Disposable, you should always Dispose it. You should be using a using statement in your bar() method to make sure ms2 gets Disposed.

It will eventually get cleaned up by the garbage collector, but it is always good practice to Dispose. If you run FxCop on your code, it would flag it as a warning.

link|flag
So even though I could have a "using" block, I still should call .Dispose()? – Saif Khan Oct 24 '08 at 15:47
The using block calls dispose for you. – Nick Oct 24 '08 at 15:52
I have to disagree with that advice. Often Dispose is just a no-op and calling it just clutters up your code. – Grauenwolf Oct 24 '08 at 23:31
1  
For info, in some trivial tests (for a parallel thread), neither FxCop nor VSTS analysis spotted a trivial missed "using" – Marc Gravell Nov 2 '08 at 8:55
1  
@Grauenwolf: your assertion breaks encapsulation. As a consumer, you shouldn't care whether it is no-op: if it is IDisposable, it is your job to Dispose() it. – Marc Gravell Nov 2 '08 at 9:55
vote up 0 vote down

This is already answered, but I'll just add that the good old-fashioned principle of information hiding means you may at some future point want to refactor:

MemoryStream foo()
{    
    MemoryStream ms = new MemoryStream();    
    // write stuff to ms    
    return ms;
}

to:

Stream foo()
{    
   ...
}

This emphasizes that callers should not care what kind of Stream is being returned, and makes it possible to change the internal implementation (e.g. when mocking for unit testing).

You then will need be in trouble if you haven't used Dispose in your bar implementation:

void bar()
{    
    using (Stream s = foo())
    {
        // do stuff with s
        return;
    }
}
link|flag
vote up 0 vote down

Disposal of unmanaged resources is non-deterministic in garbage collected languages. Even if you call Dispose explicitly, you have absolutely no control over when the backing memory is actually freed. Dispose is implicitly called when an object goes out of scope, whether it be by exiting a using statement, or popping up the callstack from a subordinate method. This all being said, sometimes the object may actually be a wrapper for a managed resource (e.g. file). This is why it's good practice to explicitly close in finally statements or to use the using statement. Cheers

link|flag
Not exactly true. Dispose is called when exiting a using statement. Dispose is not called when an object just goes out of scope. – Alexander Abramov Oct 4 at 23:09
vote up 0 vote down

I would recommend wrapping the MemoryStream in bar() in a using statement mainly for consistency:

  • Right now MemoryStream does not free memory on .Dispose(), but it is possible that at some point in the future it might, or you (or someone else at your company) might replace it with your own custom MemoryStream that does, etc.
  • It helps to establish a pattern in your project to ensure all Streams get disposed -- the line is more firmly drawn by saying "all Streams must be disposed" instead of "some Streams must be disposed, but certain ones don't have to"...
  • If you ever change the code to allow for returning other types of Streams, you'll need to change it to dispose anyway.

Another thing I usually do in cases like foo() when creating and returning an IDisposable is to ensure that any failure between constructing the object and the return is caught by an exception, disposes the object, and rethrows the exception:

MemoryStream x = new MemoryStream();
try
{
    // ... other code goes here ...
    return x;
}
catch
{
    // "other code" failed, dispose the stream before throwing out the Exception
    x.Dispose();
    throw;
}
link|flag
vote up 6 vote down

You won't leak anything - at least in the current implementation.

Calling Dispose won't clean up the memory used by MemoryStream any faster. It will stop your stream from being viable for Read/Write calls after the call, which may or may not be useful to you.

If you're absolutely sure that you never want to move from a MemoryStream to another kind of stream, it's not going to do you any harm to not call Dispose. However, it's generally good practice partly because if you ever do change to use a different Stream, you don't want to get bitten by a hard-to-find bug because you chose the easy way out early on. (On the other hand, there's the YAGNI argument...)

The other reason to do it anyway is that a new implementation may introduce resources which would be freed on Dispose.

link|flag
In this case, the function is returning a MemoryStream because it provides "data that can be interpreted differently depending on calling parameters", so it could have been a byte array, but was easier for other reasons to do as a MemoryStream. So it definitely won't be another Stream class. – Coderer Oct 24 '08 at 16:35
In that case, I'd still try to dispose of it just on general principle - build good habits etc - but I wouldn't worry too much if it became tricky. – Jon Skeet Oct 24 '08 at 16:40
vote up 1 vote down

You won't leak memory, but your code reviewer is correct to indicate you should close your stream. It's polite to do so.

The only situation in which you might leak memory is when you accidentally leave a reference to the stream and never close it. You still aren't really leaking memory, but you are needlessly extending the amount of time that you claim to be using it.

link|flag
1  
> You still aren't really leaking memory, but you are needlessly extending the amount of time that you claim to be using it. Are you sure? Dispose doesn't release memory and calling it late in the function may actually extend the time it cannot be collected. – Grauenwolf Oct 24 '08 at 23:33
vote up 6 vote down

Calling .Dispose() (or wrapping with Using) is not required.

The reason you call .Dispose() is to release the resource as soon as possible.

Think in terms of, say, the Stack Overflow server, where we have a limited set of memory and thousands of requests coming in. We don't want to wait around for scheduled garbage collection, we want to release that memory ASAP so it's available for new incoming requests.

link|flag
2  
Calling Dispose on a MemoryStream isn't going to release any memory though. In fact, you can still get at the data in a MemoryStream after you've called Dispose - try it :) – Jon Skeet Oct 24 '08 at 16:22
1  
-1 While it's true for a MemoryStream, as general advice this is just plain wrong. Dispose is to release unmanaged resources, such as file handles or database connections. Memory does not fall into that category. You almost always should wait around for scheduled garbage collection to free memory. – Joe May 15 at 19:54
What's the upside of adopting one coding style for allocating and disposing FileStream objects and a different one for MemoryStream objects? – Robert Rossney Oct 8 at 16:41
vote up 0 vote down

I'm no .net expert, but perhaps the problem here is resources, namely the file handle, and not memory. I guess the garbage collector will eventually free the stream, and close the handle, but I think it would always be best practice to close it explicitly, to make sure you flush out the contents to disk.

link|flag
A MemoryStream is all in-memory - there's no file handle here. – Jon Skeet Oct 24 '08 at 16:28
vote up 0 vote down

If an object implements IDisposable, you must call the .Dispose method when you're done.

In some objects, Dispose means the same as Close and vice versa, in that case, either is good.

Now, for your particular question, no, you will not leak memory.

link|flag
"Must" is a very strong word. Whenever there are rules, it's worth knowing the consequences of breaking them. For MemoryStream, there are very few consequences. – Jon Skeet Oct 24 '08 at 18:44
vote up 4 vote down

All streams implement IDisposable. Wrap your Memory stream in a using statement and you'll be fine and dandy. The using block will ensure your stream is closed and disposed no matter what.

wherever you call Foo you can do using(MemoryStream ms = foo()) and i think you should still be ok.

link|flag

Your Answer

Get an OpenID
or

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