The C# Language
This section provides a quick tour of the C# language.
C# Language Specifications
C# Language References
- C# Keywords
Keywords are predefined reserved identifiers that have special meanings to the compiler. They cannot be used as identifiers in your program unless they include @ as a prefix. For example, @if is a legal identifier but if is not because it is a keyword. - C# Operators
C# provides a large set of operators, which are symbols that specify which operations to perform in an expression. C# predefines the usual arithmetic and logical operators, as well as a variety of others. In addition, many operators can be overloaded by the user, thus changing their meaning when applied to a user-defined type. - C# Preprocessor Directives
Learn about C#'s conditional compilation directives. - C# Language Features
Learn about arrays, Main method, properties, indexers, passing parameters, and other language features - C# Language Tutorials
The C# tutorials provide an overview of the basics of the language and identify important language features. Each tutorial includes one or more sample programs. The tutorials discuss the sample code plus provide additional background information. They also link to the corresponding sample abstract topics, where you can download and run the sample programs.