CA1822: Mark members as static
|
TypeName |
MarkMembersAsStatic |
|
CheckId |
CA1822 |
|
Category |
Microsoft.Performance |
|
Breaking Change |
Non-breaking - If the member is not visible outside the assembly, regardless of the change you make. Non Breaking - If you just change the member to an instance member with the this keyword. Breaking - If you change the member from an instance member to a static member and it is visible outside the assembly. |
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 nonvirtual call sites to these members. Emitting nonvirtual call sites will prevent a check at runtime for each call that makes sure that the current object pointer is non-null. This can achieve a measurable performance gain for performance-sensitive code. In some cases, the failure to access the current object instance represents a correctness issue.