October 2008
Beginner to intermediate
680 pages
16h 48m
English
C# is a case-sensitive language. That is, the use of uppercase versus lowercase in C# is deliberate and mandatory. For example:
Variable names that are spelled the same way but that differ in their use of case; e.g., x (lowercase) versus X (uppercase) represent different variables.
All keywords are expressed in all lowercase: public, class, int, bool, and so forth. Don't get "creative" about capitalizing them because the compiler will complain!
Capitalization of the name of the Main method is mandatory.
Read now
Unlock full access