Do I have to have 2 different Main methods, 1 without any arguments and 1 with string[] args but private and static?
| |||
|
feedback
|
|
No - you only have to have one It does have to be static though; the class can't be generic and neither can the method. It can be:
It has to be static and non-generic as otherwise the CLR would have to create an instance of the class or work out what type parameter you wanted, respectively. It doesn't have enough information to make either of those decisions - but it doesn't need any information for a static non-generic method in a non-generic class. | |||
|
feedback
|
There, fixed that for you.
| |||
|
feedback
|
Mainmethod -- if you want to accept arguments, declare astring[]parameter to contain them and that's the only version of the method you should have.) – Kirk Woll Oct 7 '11 at 20:53