Classes with Dispose() should implement IDisposable

このページは日本語には対応しておりません。随時翻訳に取り組んでいます。翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください。

Metadata

ID: csharp-best-practices/disposable-interface

Language: C#

Severity: Info

Category: Best Practices

Description

IDisposable provides an interface for the cleanup of unmanaged resources through the function void Dispose().

To avoid confusion, this rule ensures that any class that exposes a public void Dispose() function must implement IDisposable.

Learn More

Non-Compliant Code Examples

class MyClass {
    public void Dispose()
    {
        // contents of method
    }
}

Compliant Code Examples

class MyClass: IFoobar, IDisposable {
    public void Dispose()
    {
        // contents of method
    }
}
class MyClass: IDisposable {
    public void Dispose()
    {
        // contents of method
    }
}
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis