Mega Code Archive

 
Categories / C# Book / 01 Language Basics
 

0004 Identifiers

We use identifiers to name our variables, classes and methods. C# identifiers are case sensitive. Usually the parameters, local variables are in camel case, for example, myValue. The other identifiers are Pascal case, such as MyValue. C# identifiers start with underscore or letter. The follow are good valid C# identifiers: _width, RectangleArea