gpt4 book ai didi

c# - 多次处理对象

转载 作者:太空狗 更新时间:2023-10-30 00:15:47 24 4
gpt4 key购买 nike

我有以下代码,它使用流打开和修改 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();
}
}

我最初使用了两个使用 block (一个用于 MemoryStream,第二个用于 WordprocessingDocument),但收到警告 CA2202:“对象 'stream' 可以在方法中多次处理...”根据 MSDN article ,我修改了上面的代码(将外部使用转换为尝试),但我仍然收到此警告。

我不确定如何构造此方法以确保 Dispose 在流中被调用一次。我不想简单地禁止显示此警告,因为 MSDN 文章指出您不应该依赖多次安全调用 Dispose。

最佳答案

多次处理一个对象应该总是安全的。来自documentation for Dispose :

If an object's Dispose method is called more than once, the object must ignore all calls after the first one. The object must not throw an exception if its Dispose method is called multiple times.

话虽如此,using 语句绝对是实现此目的的方式。您收到该方法的唯一原因是,如果您显式处置该对象,这不是必需的,因为 using 语句应始终恰好处置该对象一次。

关于c# - 多次处理对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11192445/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com