Avoid prefix boolean returning method with `get`

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(){
        
    }
}