Hi Folks,
A couple of questions...
If in a class I have a main which is obviously static, do I have to make every method in the same class static as well? What does static actually mean and how does it affect the program?
Also..
When given a certain method return type, say, int or string - What does the compiler expect to see within the method? Something like:
string name = "Usmaan";
return name; // COMMENT -> You can correct me if i'm wrong.
--------------------------------------------------------------
Any help is really appreciated - Thank you in advance.
Usmaan~