Prefix static method with class name.
In Resharper there is an option to always prefix class member variables / methods / properties with 'this.'
While this is awesome I have the tendency to also do this for static methods.
So instead of:
MyStaticMethod(var1, var2);
I would like to see (after cleanup):
MyClassWithStaticMethod.MyStaticMethod(var1, var2);
Is there an option provided for this in Resharper?
Thanks!
-Kristof
Please sign in to leave a comment.