by Administrator
18. May 2009 16:58
Identifi ers are the names you use to identify the elements in your programs, such as
namespaces, classes, methods, and variables (you will learn about variables shortly). In C#,
you must adhere to the following syntax rules when choosing identifi ers:
* You can use only letters (uppercase and lowercase), digits, and underscore characters.
* An identifi er must start with a letter (an underscore is considered a letter).
For example, result, _score, footballTeam, and plan9 are all valid identifi ers, whereas result%,
footballTeam$, and 9plan are not.
Important C# is a case-sensitive language: footballTeam and FootballTeam are not the same
identifi er.

ba3d9ff6-8762-45f7-85d5-b147083ea38b|0|.0
Tags: c#