为什么 HashAlgorithm.Dispose 不是公开的?

发布于 2024-08-27 08:47:19 字数 211 浏览 4 评论 0原文

为什么 HashAlgorithm.Dispose 不是公开的?

void IDisposable.Dispose()
{
    this.Dispose(true);
    GC.SuppressFinalize(this);
}

据我了解,这是一个显式的接口实现,仍然可以调用。我正在尝试找出其背后的原因。

Why isn't HashAlgorithm.Dispose public?

void IDisposable.Dispose()
{
    this.Dispose(true);
    GC.SuppressFinalize(this);
}

I understand that it is an explicit interface implementation and can still be called. I am trying to work out the reasoning behind it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雪花飘飘的天空 2024-09-03 08:47:19

这称为显式接口实现。调用此方法的唯一方法是转换为 IDisposable 对象。这可能有用的一个很好的例子是,当您有一个类实现两个具有相同方法名称的接口,并且您希望为每个接口提供不同的实现时。

This is called explicit interface implementation. The only way to call this method is to cast to a IDisposable object. One good example of when this might be useful is when you have a class which implements two interfaces that both have the same method name and you want to provide a different implementation for each of them.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文