Why does ReSharper complain when a method can become static, but is not?
Is it because only one instance of a static method is created (on the type) and thus save on
You don't have to push "this" onto the function's stack for a static method. That's another reason it's cheaper.