For the starting method like this:
static void main()
Does it matter if "main" has a lowercase "m"? or does it have to be capitalized?
For the starting method like this:
static void main()
Does it matter if "main" has a lowercase "m"? or does it have to be capitalized?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Pradeep ShetPosted Sep 13, 2014, 4:23 AM
static void Main(string[] args)
{}
Chisato NPosted Sep 18, 2014, 5:18 PM
I was just unsure because VS never seem to correct me on that.
Wim SturkenboomPosted Sep 13, 2014, 3:18 AM
Just for your information, in C (also case sensitive), it was main with a lowercase 'm'.
VulpesPosted Sep 12, 2014, 10:04 AM
C# is a case-sensitive language.