Enforce the use of the "this" and "base" at compile-time in Visual Studio/C# - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T13:53:30Zhttp://stackoverflow.com/feeds/question/180371http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/180371/enforce-the-use-of-the-this-and-base-at-compile-time-in-visual-studio-c2Enforce the use of the "this" and "base" at compile-time in Visual Studio/C#roosteronacid2008-10-07T20:53:46Z2008-10-07T22:23:21Z
<p>When extending classes, I find it very descriptive to use the <code>base</code> (<code>MyBase</code> in VB) keyword when accessing methods in the base-class. And the <code>this</code> (<code>Me</code> in VB) keyword when accessing functions in the class extending the base-class. That goes for a "flat" structure with no inheritance as well.</p>
<p>I find it easier to read this:</p>
<pre><code>public class World
{
public String baseName = "World";
}
public class Hello : World
{
public String thisName = "Hello";
public String GetNames()
{
return this.thisName + " " + base.baseName;
}
}
</code></pre>
<p>Than this:</p>
<pre><code>...
public String GetNames()
{
return thisName + " " + baseName;
}
...
</code></pre>
<p>Now, my question is: is it possible to enforce the use of <code>this</code> and <code>base</code> at compile-time in Visual Studio/C#, so that the compiler throws an error or a warning if you do not use these keywords in your code?</p>
http://stackoverflow.com/questions/180371/enforce-the-use-of-the-this-and-base-at-compile-time-in-visual-studio-c/180379#1803794Answer by JohnC for Enforce the use of the "this" and "base" at compile-time in Visual Studio/C#JohnC2008-10-07T20:55:49Z2008-10-07T20:55:49Z<p>Have a look at StyleCop.</p>
<p><a href="http://code.msdn.microsoft.com/sourceanalysis" rel="nofollow">http://code.msdn.microsoft.com/sourceanalysis</a></p>
<p>There are some rules in there that should do what you want.
You can configure it to show any style violations as warnings or errors.</p>
http://stackoverflow.com/questions/180371/enforce-the-use-of-the-this-and-base-at-compile-time-in-visual-studio-c/180688#1806880Answer by Odd for Enforce the use of the "this" and "base" at compile-time in Visual Studio/C#Odd2008-10-07T22:23:21Z2008-10-07T22:23:21Z<p>You may also want to check out <a href="http://www.ssw.com.au/ssw/CodeAuditor/" rel="nofollow">SSW's code auditor</a></p>
<p>Unfortunately there is no way that I'm aware of to enforce this in the compiler.</p>