0
Is C# programming case sensitive?
6 Respuestas
+ 4
Yes, proper capitalization of letters must be observed.
+ 3
Mehaboobmunna, both are pretty much the same since "string" is an alias for "System.String", which can be simplified written as "String".
"String" is the class then.
+ 2
Yes it is.
+ 1
Yes, the same like java.
0
It definitely is. you cannot name a method CaseCheck and use it as casecheck. Compiler will throw an error.
Don't get confused with string and String both working same. they are different. I don't exactly remember exactly but one is class and other is maybe an object.
edit : the other is an alias. @hyrex thank you
so string and String both work. that doesn't mean c# is case insensitive. it is case SENSITIVE
- 3
why not just Google it