8

我认为这是一种很好的做法,当使用该Assembly.GetManifestResourceStream方法访问嵌入式程序集资源时,在完成后关闭返回Stream。但是,我刚刚在以下文章中发现了一些内容:

http://msdn.microsoft.com/en-us/library/ms950960.aspx

// Get the stream that holds the resource
// NOTE1: Make sure not to close this stream!
// NOTE2: Also be very careful to match the case
//        on the resource name itself
Stream stream =
  assem.GetManifestResourceStream("Azul.jpg");

// Load the bitmap from the stream
this.BackgroundImage = new Bitmap(stream);

这里的评论说不应该关闭流尽管文章没有提到原因。谷歌搜索没有提供任何结论;有些人似乎关闭了这个流,而另一些人则没有,并说垃圾收集器会处理它。

我应该关闭返回的流Assembly.GetManifestResourceStream吗?我不应该有什么特别的原因吗?

4

1 回答 1

4

该评论不希望您关闭它,因为它会继续从中创建一个Bitmap对象。通常,您应该在使用完流后关闭它们,否则您的应用程序将受到内存泄漏的影响。

于 2012-08-10T17:05:30.700 回答