|
|
 |

 |
|
Microsoft® Visual C#™ .NET Language Reference
|
|
|
Author
|
|
Microsoft Corporation
|
|
|
Pages
|
404
|
|
Disk
|
N/A
|
|
Level
|
Advanced
|
|
Published
|
03/06/2002
|
|
ISBN
|
9780735615540
|
|
Price
|
$39.99
To see this book's discounted price, select a reseller below.
|
|
|
|
|
 |
|
|
C# Keywords
Part 2 C# Keywords
The 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.
The following lists each keyword used in C# and the section within this part of the book that discusses that keyword.
| abstract | Access Modifiers |
| as | Operator Keywords |
| base | Access Keywords |
| bool | Type Keywords |
| break | Statement Keywords |
| byte | Type Keywords |
| case | Statement Keywords |
| catch | Statement Keywords |
| char | Type Keywords |
| checked | Statement Keywords |
| class | Reference Types |
| const | Access Modifiers |
| continue | Statement Keywords |
| decimal | Type Keywords |
| default | Statement Keywords |
| delegate | Reference Types |
| do | Statement Keywords |
| double | Type Keywords |
| else | Statement Keywords |
| enum | Type Keywords |
| event | Access Modifiers |
| explicit | Conversion Keywords |
| extern | Access Modifiers |
| false | Literal Keywords; Operator Keywords |
| finally | Statement Keywords |
| fixed | Statement Keywords |
| float | Type Keywords |
| for | Statement Keywords |
| foreach | Statement Keywords |
| goto | Statement Keywords |
| if | Statement Keywords |
| implicit | Conversion Keywords |
| in | Statement Keywords |
| int | Type Keywords |
| interface | Reference Types |
| internal | Modifiers |
| is | Operator Keywords |
| lock | Statement Keywords |
| long | Type Keywords |
| namespace | Namespace Keywords |
| new | Operator Keywords |
| null | Literal Keywords |
| object | Reference Types |
| operator | Conversion Keywords |
| out | Method Parameter |
| override | Access Modifiers |
| params | Method Parameter |
| private | Modifiers |
| protected | Modifiers |
| public | Modifiers |
| readonly | Access Modifiers |
| ref | Method Parameter |
| return | Statement Keywords |
| sbyte | Type Keywords |
| sealed | Access Modifiers |
| short | Type Keywords |
| sizeof | Operator Keywords |
| stackalloc | Operator Keywords |
| static | Access Modifiers |
| string | Reference Types |
| struct | Type Keywords |
| switch | Statement Keywords |
| this | Access Keywords |
| throw | Statement Keywords |
| true | Literal Keywords; Operator Keywords |
| try | Statement Keywords |
| typeof | Operator Keywords |
| uint | Type Keywords |
| ulong | Type Keywords |
| unchecked | Statement Keywords |
| unsafe | Access Modifiers |
| ushort | Type Keywords |
| using | Namespace Keywords |
| virtual | Access Modifiers |
| void | Reference Types |
| volatile | Access Modifiers |
| while | Statement Keywords |
Next
Last Updated: February 19, 2002
|