SA1126 - Visual-Stylecop/Visual-StyleCop GitHub Wiki
<title>SA1126: PrefixCallsCorrectly</title>
<script src="script/helpstudio.js" type="text/javascript"></script>
<script src="script/StandardText.js" type="text/jscript"></script>
<script type="text/jscript">WritePageTop(document.title);</script>
TypeName |
PrefixCallsCorrectly |
CheckId |
SA1126 |
Category |
Readability Rules |
A call to a member is not prefixed with the 'this.', 'base.', 'object.' or 'typename.' prefix to indicate the intended method call, within a C# code file.
A violation of this rule occurs whenever the code contains a call to a member which is not prefixed correctly.
In some case from sourcecode analysis we cannot be sure which prefix is required. It could be 'this', 'base', 'object', the typename of the class we're in or one of our base classes.
To fix a violation of this rule, insert the correct prefix before the call to the class member.
[SuppressMessage("StyleCop.CSharp.ReadabilityRules", "SA1126:PrefixCallsCorrectly", Justification = "Reviewed.")]