其他分享
首页 > 其他分享> > 我将如何为我的类实现IDisposable,以便可以在“ using”块中使用它?

我将如何为我的类实现IDisposable,以便可以在“ using”块中使用它?

作者:互联网

我使用C#编写代码,并创建了一个我想在“ using”块中使用的类.

这是否可能?如果可以,我应该如何进行?我需要向班级添加什么内容?

解决方法:

using关键字可以在实现IDisposable的任何对象上使用.要实现IDisposable,请在您的类中包含Dispose方法.

通常,在类的终结器中还包括Dispose功能,以防您的库用户不(或忘记)调用Dispose的情况.

例如:

class Email : IDisposable {

    // The only method defined for the 'IDisposable' contract is 'Dispose'.
    public void Dispose() {
        // The 'Dispose' method should clean up any unmanaged resources
        // that your class uses.
    }

    ~Email() {
        // You should also clean up unmanaged resources here, in the finalizer,
        // in case users of your library don't call 'Dispose'.
    }
}

void Main() {

    // The 'using' block can be used with instances of any class that implements
    // 'IDisposable'.
    using (var email = new Email()) {

    }
}

标签:idisposable,c,class
来源: https://codeday.me/bug/20191031/1976904.html