This rule is Obsolete | |
Synopsis: | Only use the this. construction to avoid a name clash |
Language: | C# |
Severity Level: | 5 |
Category: | Naming |
Description: |
Do not use the this. construction to dereference members. The use of this is only allowed as a reference to the current class instance or to prevent name clashing between method parameters and class fields. |