IDisposable和IAsyncDisposable接口(链接)

Posted opencoder

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IDisposable和IAsyncDisposable接口(链接)相关的知识,希望对你有一定的参考价值。

关于IDisposable接口,我相信大家都很熟悉了,下面是微软官方文档的介绍:

IDisposable Interface

Implement a Dispose method

 

在C# 8.0中,微软引入了IAsyncDisposable接口,下面是微软官方文档的介绍:

IAsyncDisposable Interface

Implement a DisposeAsync method

 

如何使用IAsyncDisposable接口,可以查看下面的帖子:

What is the difference between using and await using? And how can I decide which one to use?

 

以上是关于IDisposable和IAsyncDisposable接口(链接)的主要内容,如果未能解决你的问题,请参考以下文章

using IDisposable

C# IDisposable 正确用法和调用

IDisposable和IAsyncDisposable接口(链接)

iDisposable

为啥是 IDisposable 接口? [复制]

IDisposable 到底需要啥? [复制]