+ 1
Are methods in C# case sensitive?
3 Respuestas
+ 3
Yes
+ 3
they both will be accepted but as two different strings..
string A and string a are two different strings
+ 1
I see, so things like Console.WriteLine or Console.ReadLine is hard coded in the language hence erros will show up if not written that way. So if that's the case how about something like this:
string yourName;
OR
string Yourname;
Which one of them would throw and error?