Is calling MemoryStream.ToArray() dangerous after disposing?

后端 未结 1 1044
北海茫月
北海茫月 2020-12-10 11:13

In the below code, is there any chance the GC will clean out the MemoryStream so that ToArray will fail, since it is outside the using statement?

private sta         


        
相关标签:
1条回答
  • 2020-12-10 11:38

    No, there's no chance of that. It's safe to do - the MemoryStream keeps a strong reference to the byte array.

    I'll see if I can find any documentation about guarantees...

    EDIT: Sort of...

    From MemoryStream.Close:

    The buffer is still available on a MemoryStream once the stream has been closed.

    Admittedly that doesn't guarantee it for Dispose, but that's documented to call Stream.Close.

    MemoryStream.Dispose(bool) could then be overridden to release the array, but it doesn't in my experience, and it would be a breaking change at this point.

    0 讨论(0)
提交回复
热议问题