Avoid prefix boolean returning method with `get`

This page is not yet available in Spanish. We are working on its translation.
If you have any questions or feedback about our current translation project, feel free to reach out to us!

Metadata

ID: csharp-code-style/boolean-get-method-name

Language: C#

Severity: Notice

Category: Code Style

Description

If a method returns a boolean, do not use a name that starts with get. Instead, use a name that shows a better description of the method objective. For example, start the method name with is, has, or can.

Learn More

Non-Compliant Code Examples

class MyClass {
    bool getAttribute(){
        
    }
}

Compliant Code Examples

class MyClass {
    bool hasAttribute(){
        
    }
}
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