I know this has been asked before, but I can't find any simple answers for a noob like me in C#. What exactly is a static method. I mean what does it mean to be static vs. nonstatic.
I know in the code with the main method we use
public static void Main(string []args)
what does the static change about the main method that distinguishes it from the rest in regards to it being static.
- Thanks