C# is case sensitive, what is mean by case sensitive
Answer Posted / kishoreg
The First thing that we need to aware is C# is case-
sensitive.If you are used to program using either c,c++
then definitely you might have come across the case-
sensitive nature.
Small Example to case[i.e, either UPPER or lower]
sensitive .
We used to define Main as
static void Main()
{
....
}
but instead if you write the [M]ain as [m]ain then it will
give you error becoz both are different identifier.
This is what case-sensitive.Most of the time VS-IDE will to
your rescue if you gone wrong somewhere with the c# syntax.
Hope it is helpful.
| Is This Answer Correct ? | 21 Yes | 3 No |
Post New Answer View All Answers
What is difference between string and stringbuilder in c#?
What is a method signature in c#?
what is a structure in c#
How do you pronounce c#?
write a program to find the biggest palindrome in the given string
Can extension methods access private members?
What are destructors in C#?
Does c# replace c++?
What are types in c#?
What is field in c#?
What is multicast delegate in c# ?
How do I type a whitespace character?
Contrast between an interface and abstract class?
Are structs faster than classes?
What is managed or unmanaged code?