C#: ReSharper complains when method can be static, but isn't - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T18:21:03Zhttp://stackoverflow.com/feeds/question/790281http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/790281/c-resharper-complains-when-method-can-be-static-but-isnt5C#: ReSharper complains when method can be static, but isn'tAndreas Grech2009-04-26T05:21:23Z2009-09-01T09:21:33Z
<p>Why does ReSharper complain when a method can become static, but is not?</p>
<p>Is it because only one instance of a static method is created (on the type) and thus save on performance? </p>
http://stackoverflow.com/questions/790281/c-resharper-complains-when-method-can-be-static-but-isnt/790283#7902831Answer by Chris Farmer for C#: ReSharper complains when method can be static, but isn'tChris Farmer2009-04-26T05:23:28Z2009-04-26T05:23:28Z<p>You don't have to push "this" onto the function's stack for a static method. That's another reason it's cheaper.</p>
http://stackoverflow.com/questions/790281/c-resharper-complains-when-method-can-be-static-but-isnt/790284#7902842Answer by Charles Bretana for C#: ReSharper complains when method can be static, but isn'tCharles Bretana2009-04-26T05:23:34Z2009-04-26T05:38:57Z<p>No (zero) instances of the class need to be created to use the method if it is declared as static... that saves cpu cycles necessary for construction processing, heap space, and cpu cycles by the Garbage collector in reclaiming the object from the heap... </p>
<p>Also, your question, as it it written </p>
<p>" ... only one instance of a static method is created (on the type)... " </p>
<p>implies that for an instance method, the code for the method is repeated for each instance of the class that is created. That is not true. No matter how many instances you create for any type, the code for the methods is loaded intto memory only once. The object stored on the heap for each instance only stores the type's "State", (non-static fields & a few misc tracking variables).</p>
http://stackoverflow.com/questions/790281/c-resharper-complains-when-method-can-be-static-but-isnt/790285#7902853Answer by FFire for C#: ReSharper complains when method can be static, but isn'tFFire2009-04-26T05:24:01Z2009-09-01T09:19:44Z<p>It's not a complaint, it's just advice.</p>
http://stackoverflow.com/questions/790281/c-resharper-complains-when-method-can-be-static-but-isnt/790286#7902860Answer by Lex Li-MSFT for C#: ReSharper complains when method can be static, but isn'tLex Li-MSFT2009-04-26T05:24:41Z2009-04-26T05:24:41Z<p>Please understand that sometimes ReSharper can show false alarms. Well, simply send the team your feedback can help them improve this great product.</p>
<p>Regards,</p>
http://stackoverflow.com/questions/790281/c-resharper-complains-when-method-can-be-static-but-isnt/790289#7902897Answer by itowlson for C#: ReSharper complains when method can be static, but isn'titowlson2009-04-26T05:26:12Z2009-04-26T05:26:12Z<p>From the FxCop documentation for the same warning (emphasis added):</p>
<p>"Members that do not access instance data or call instance methods can be marked as static (Shared in Visual Basic). After you mark the methods as static, the compiler will emit non-virtual call sites to these members. Emitting non-virtual call sites will prevent a check at runtime for each call that ensures that the current object pointer is non-null. <em>This can result in a measurable performance gain for performance-sensitive code. In some cases, the failure to access the current object instance represents a correctness issue.</em>"</p>
http://stackoverflow.com/questions/790281/c-resharper-complains-when-method-can-be-static-but-isnt/790318#79031812Answer by Brian Rasmussen for C#: ReSharper complains when method can be static, but isn'tBrian Rasmussen2009-04-26T05:54:34Z2009-09-01T09:00:24Z<p>I find that comment very useful as it points out two important things:</p>
<ol>
<li><p>It makes me ask myself if the method
in question should actually be part
of the type or not. Since it doesn't use
any instance data, you should at
least consider if it could be moved
to its own type. Is it an integral part
of the type, or is it really a general
purpose utility method? </p></li>
<li><p>If it does make sense to keep the
method on the specific type, there's
a potential performance gain as the
compiler will emit different code
for a static method.</p></li>
</ol>
http://stackoverflow.com/questions/790281/c-resharper-complains-when-method-can-be-static-but-isnt/792029#7920291Answer by John Saunders for C#: ReSharper complains when method can be static, but isn'tJohn Saunders2009-04-27T01:54:35Z2009-09-01T09:21:33Z<p>For me, the greatest benefit of this ReSharper advice (you can set it as a warning, suggestion, or hint). Is that it encourages me to make as many methods static as possible. This is a Good Thing, since a static method has no direct dependency on the class it is a member of. This means that it can easily be moved to another class as a static member.</p>
<p>Another neat trick with statics in ReSharper is to make a set of related methods static by using the "Make Method Static" refactoring. This will move some of the dependencies into method parameters. When you look at this set of methods later, you may find they all access a particular object of a particular type. You can then use the "Make method non-static" refactoring, and specify that object as being the new <em>this</em> pointer. That moves your method into the other class.</p>
<p>From this:</p>
<pre><code>internal class ClassA
{
public ClassB Property { get; set; }
public int Method()
{
var classB = Property;
return classB.Property1 + classB.Property2;
}
}
internal class ClassB
{
public int Property1 { get; set; }
public int Property2 { get; set; }
}
</code></pre>
<p>to this:</p>
<pre><code> public static int Method(ClassB property)
{
var classB = property;
return classB.Property1 + classB.Property2;
}
</code></pre>
<p>to this:</p>
<pre><code>internal class ClassA
{
public ClassB Property { get; set; }
}
internal class ClassB
{
public int Property1 { get; set; }
public int Property2 { get; set; }
public int Method()
{
return Property1 + Property2;
}
}
</code></pre>
http://stackoverflow.com/questions/790281/c-resharper-complains-when-method-can-be-static-but-isnt/792048#7920481Answer by JP for C#: ReSharper complains when method can be static, but isn'tJP2009-04-27T02:01:15Z2009-04-27T02:01:15Z<p><a href="http://stackoverflow.com/questions/169378/c-method-can-be-made-static-but-should-it">Very good debate on that subject here (SO)</a>. I am in the camp of if-it-can-be-made-static-make-it-static. I believe this because of the notion of why one would have an instance method that does not use any instance data. Is it truly an instance method in that case or is it actually a class method?</p>