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 cls, cts and clr in net?
Can arraylist store different data types in c#?
What is sealed class in c#?
What is the difference between the debug class and trace class? Documentation looks the same.
Wht executescaler method is used?
What is a dynamic assembly?
Is null empty or whitespace c#?
What is the differences between datagrid, datalist and repeater in .net?
In the page load event I assigned dropdownlist’s datasource property to a valid list. On the submit button click.. The same datasource property is coming as null. Why?
What is int32?
What is sqldatareader c#?
When To use HashTable In C#
What is the difference between virtual and override in c#?
What is the difference between delegates and events in c#?
Explain Constructor and destructor?