Skip to content

MethodNameStartsUpper

Fraser Greenroyd edited this page Apr 21, 2020 · 2 revisions

Summary

Severity - Fail

Check method - Here

Details

The MethodNameStartsUpper check ensures that method declarations start with an uppercase character.

For example, the following method declaration would fail this check because the method name begins with a lowercase character.

public static void helloWorld()

While this one will pass because it starts with an uppercase character.

public static void HelloWorld()

Clone this wiki locally