其他分享
首页 > 其他分享> > CodeGo.net> CA2000的方法使用“使用”,但不使用尝试/最终

CodeGo.net> CA2000的方法使用“使用”,但不使用尝试/最终

作者:互联网

我正在尝试理解一种奇怪的情况.这段代码给出了CA2000(在所有引用之前调用Dispose on object …):

var ms = new MemoryStream(Encoding.Default.GetBytes(DefaultControlTemplateXaml));
using(ms)
{
    var x = XamlReader.Load(ms);
    _defaultControlTemplate = x as ControlTemplate;
}

但是,另一部分不是:

var ms = new MemoryStream(Encoding.Default.GetBytes(DefaultControlTemplateXaml));
try
{
    var x = XamlReader.Load(ms);
    _defaultControlTemplate = x as ControlTemplate;
}
finally { ms.Dispose(); }

按照Microsoft’s documentation

The using statement ensures that Dispose is called even if an exception occurs while you are calling methods on the object. You can achieve the same result by putting the object inside a try block and then calling Dispose in a finally block; in fact, this is how the using statement is translated by the compiler.

所以我真的很茫然……这两个语句不应该是相同的吗?

更新资料

由于人们坚持(不用阅读我的评论)来解释使用提花酒.我这样说:

  using (var ms = new MemoryStream(Encoding.Default.GetBytes(DefaultControlTemplateXaml)))
  {
    var x = XamlReader.Load(ms);
    _defaultControlTemplate = x as ControlTemplate;
  }

这仍然在fxcop上提供了CA2000,因此原始问题仍然存在.

更新2

添加一些屏幕截图,以便您可以看到这是Visual Studio 2010和整个功能.

第一版(发出警告):

第二版(确定):

解决方法:

(删除了一些不适用于该问题的内容,以及一些关于ThreadAbortException的不正确内容.)

您可能遇到了CA2000报告的误报.您可以搜索Microsoft Connect for CA2000.存在很多问题(并非所有问题都是误报错误).

由于这些误报,我个人在某些项目中关闭了CA2000.我将Visual Studio 2010与Code Analysis结合使用,并且我刚刚确认,是的,在不得不多次抑制CA2000之后,我们决定在我现在正在处理的项目中将其关闭.

标签:fxcop,code-analysis,c,net
来源: https://codeday.me/bug/20191201/2082018.html