111,120
社区成员
发帖
与我相关
我的任务
分享
protected override void Dispose(bool disposing)
{
try
{
...
}
finally
{
if (this.Closable && (this.stream != null))
{
try
{
if (disposing)
{
this.stream.Close(); //<---
}
}
finally
{
this.stream = null;
...
}
}
}
}