Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion documentation/SA1307.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The name of a public or internal field in C# does not begin with an upper-case l

## Rule description

A violation of this rule occurs when the name of a public or internal field begins with a lower-case letter. Public or internal fields should being with an upper-case letter.
A violation of this rule occurs when the name of a public or internal field begins with a lower-case letter. Public or internal fields should begin with an upper-case letter.

If the field or variable name is intended to match the name of an item associated with Win32 or COM, and thus needs to start with a lower-case letter, place the field or variable within a special *NativeMethods* class. A NativeMethods class is any class which contains a name ending in NativeMethods, and is intended as a placeholder for Win32 or COM wrappers. StyleCop will ignore this violation if the item is placed within a NativeMethods class.

Expand Down