+ 2
What's the difference?
static string Person(string name) {} vs static string person(string name) {}
1 Odpowiedź
+ 2
The difference is uppercase and lowercase P.
In C# it's a convention to begin method names with uppercase letters.
static string Person(string name) {} vs static string person(string name) {}