C# is case sensitive, what is mean by case sensitive

Answers were Sorted based on User's Feedback



C# is case sensitive, what is mean by case sensitive..

Answer / pankaj

Case sensitive means that every charcter that is written in
in small latter is different from Capital latter
ex - a is different from A.
now in case of c#
every keyword like
1. Main() is different from main().
2.Console is different from console.

Is This Answer Correct ?    29 Yes 1 No

C# is case sensitive, what is mean by case sensitive..

Answer / 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

C# is case sensitive, what is mean by case sensitive..

Answer / rajkamal

Case Sensitive means treating/Allowing/Considering Upper
Case Letters as Different as Lower Case vise versa.

Is This Answer Correct ?    8 Yes 2 No

Post New Answer

More C Sharp Interview Questions

Why do I get a syntax error when trying to declare a variable called checked?

0 Answers  


What is xamarin used for?

0 Answers  


What is a property in c#?

0 Answers  


Which control cannot be placed in mdi?

0 Answers  


What is default parameter in c#?

0 Answers  






What is uint64_t?

0 Answers  


What is difference between write and writeline?

0 Answers  


What is the benefit of dependency injection c#?

0 Answers  


Explain the process of inheriting a class into another class?

0 Answers  


Where is c# compiler located?

0 Answers  


What language is arduino?

0 Answers  


What is expression c#?

0 Answers  


Categories