微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

c# – CA2000:Microsoft.Reliability:在对所有引用超出范围之前调用System.IDisposable.Dispose对象’dt’

当我运行代码分析工具时,我得到以下内容

Warning 1 CA2000 : Microsoft.Reliability : In method ‘Class1.test.testMethod()’,object ‘dt’ is not disposed along all exception paths. Call System.Idisposable.dispose on object ‘dt’ before all references to it are out of scope.
How to resolve the warnings??

public void testMethod()
{
   DataTable dt = new DataTable();
   DataTable dt1= new DataTable();
      try
      {
         if (dt.Rows.Count == 0)
         {
            dt1.Merge(dt);
         }
      }
      catch
      {
         throw;
      }
      finally
      {
         if (dt != null) dt.dispose();
         if (dt1 != null) dt1.dispose();
      }
}

解决方法

不确定为什么会收到该错误,但您可以在方法中尝试 using语句块并查看错误是否消失.试试吧:
public void testMethod()
{
    using (DataTable dt = new DataTable())
    using (DataView dv = new DataView(dt))
    {
        //your work
    }
}

原文地址:https://www.jb51.cc/csharp/100096.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐