As it is clear from question, if I convert a normal method to static what gains will I made?
|
|
|||
|
|
|
Apart from the semantic reasons mentioned above, static methods are generally faster (due to not having to create an object to call the method). They are subject to compile-time optimisations and as far as I recall, the CLR also performs some special optimisations on them. |
||||
|
|
|
Static function normally used for utility stuffs like Ex: here |
||
|
|
|
|
You will gain clarity, because In general, it’s not really a question of gain, it’s a question of semantics: does your method depend on the object state? If so, make it non- |
||||
|
