Static vs. Non-Static method in C#
I stumbled across some interesting discussions on how they differ from non-static methods, here’s a summary of what I learnt. The Static Keyword In C# terms, “static” means “relating to the type itself, rather than an instance of the type”. You access a static member using the type name instead of a reference or a …