我有以下代码,它使用流打开和修改 Open XML 文档,然后保存该流的新二进制表示:
MemoryStream stream = null;
try
{
stream = new MemoryStream();
stream.Write(this.GetBinaryRepresentation(), 0, this.GetBinaryRepresentation().Length);
using (WordprocessingDocument document = WordprocessingDocument.Open(stream, true))
{
OfficeDocument.ModifyDocument(document);
this.SetBinaryRepresentation(stream.ToArray());
stream = null;
}
}
finally
{
if (stream != null)
{
stream.Dispose();
}
}
我最初使用了两个 using 块(一个用于 MemoryStream,第二个用于 WordprocessingDocument),但收到警告 CA2202:“对象'流'可以在方法中多次处理......”根据MSDN 文章,我修改了上面的代码(将外部使用转换为尝试),但我仍然收到此警告。
我不确定如何构建此方法以确保在流上仅调用一次 Dispose。我不想简单地禁止这个警告,因为 MSDN 文章指出你不应该依赖 Dispose 可以安全地多次调用。