This product is not supported for your selected Datadog site. ().
Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.

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 Security

PREVIEWING: heston/DOCS-10466