Why does the extract method command in visual studio create static methods? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T09:27:25Zhttp://stackoverflow.com/feeds/question/511211http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/511211/why-does-the-extract-method-command-in-visual-studio-create-static-methods3Why does the extract method command in visual studio create static methods?Crippeoblade2009-02-04T12:54:51Z2009-02-04T12:57:30Z
<p>Why does Visual Studio by default create a private static method when refactoring code and selecting extract method?</p>
<p>If I'm refactoring a non-static class and the method is only visible within the class why is it static?</p>
<p>Is there some performance benefit by calling a private static method within a non-static class compared to a non-static method within a non-static class? </p>
<p>Is it for readability to simply show that the method does not rely on any member variables of the class? </p>
http://stackoverflow.com/questions/511211/why-does-the-extract-method-command-in-visual-studio-create-static-methods/511218#5112188Answer by Konrad Rudolph for Why does the extract method command in visual studio create static methods?Konrad Rudolph2009-02-04T12:56:15Z2009-02-04T12:56:15Z<blockquote>
<p>Why does Visual Studio by default create a private static method when refactoring code and selecting extract method?</p>
</blockquote>
<p>It does this only if your method doesn't access any member variables/methods/properties. This is good because it basically operates on the principle of least assumptions: since you don't access instance-specific data, might as well make the method <code>static</code>.</p>
<blockquote>
<p>Is there some performance benefit by calling a private static method within a non-static class compared to a non-static method within a non-static class?</p>
</blockquote>
<p>Theoretically, there might be but I doubt it. However, making the method static makes it clear that it will not access or modify instance data, which I find a useful hint.</p>
http://stackoverflow.com/questions/511211/why-does-the-extract-method-command-in-visual-studio-create-static-methods/511228#5112280Answer by ocdecio for Why does the extract method command in visual studio create static methods?ocdecio2009-02-04T12:57:30Z2009-02-04T12:57:30Z<p>Creating a static method may be considered a performance enhancement because there is no "this" pointer to pass as a variable. I use ReSharper and it always recommends turning methods into static whenever they don't refer to a class variable.</p>