Total .NET Analyzer Rule Documentation |
|
EventArgumentsSuffix Rule
Only use the suffix 'EventArgs' for Event Argument names.
Remarks
Using a standardized naming convention is an important element in writing code that is easy to read, understand, and maintain. To keep your code readable and easy to maintain, you should only use the suffix 'EventArgs' for event argument names.
Resolution
Remove the suffix 'EventArgs' from names that are not Event Argument type names.
(Note that this is standardized naming convention, so it has no effect on the execution of code.)
See Also
Event Naming Guidelines