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 are the advantages of using partial classes?
What is managed code?
What is global asax in c#?
What is singleordefault?
What are classes in c#?
Explain about generics in c#.net?
What is the use of nullable types in c#?
What is the delegate in c#?
What is an object and a class?
What is reference c#?
What is the difference between internal and private in c#?
Describe ways of cleaning up objects in c#.
Difference between a sub and a function in c#.
Write a console application and implement the ternary operator to decide whether the age a user entered after being prompted is allowed to vote or not(given that only citizens between 18 and 120 years only inclusive can vote). Use exception handling for non-numerical input.
Is unboxing an implicit conversion?