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
Why c# is type safe?
Describe how a .net application is compiled and executed
What are escape sequences explain with example?
What is a console in c#?
What is a long in c#?
What are immutable types in c#?
How do I do implement a assert?
What is hashtable in c# net with example?
How to prevent the error while updating ui control from another thread?
Difference between call by value and call by reference in C#?
Why do we use 0?
What is the purpose of dependency injection?
Can an exception be thrown from a catch block?
How do I declare a pure virtual function in c#?
What type is string in c#?