Appendix A. C# Keywords
-
abstract A class modifier that specifies that the class must be derived-from to be instantiated.
-
as A binary operator type that casts the left operand to the type specified by the right operand and that returns
nullrather than throwing an exception if the cast fails.
-
base A variable with the same meaning as
this, except it accesses a base class implementation of a member.
-
bool A logical datatype that can be
trueorfalse.
-
break A jump statement that exits a loop or
switchstatement block.
-
byte A one-byte unsigned integral datatype.
-
case A selection statement that defines a particular choice in a
switchstatement.
-
catch The part of a
trystatement that catches exceptions of a specific type defined in thecatchclause.
-
char A two-byte Unicode character datatype.
-
checked A statement or operator that enforces arithmetic bounds checking on an expression or statement block.
-
class An extendable reference type that combines data and functionality into one unit.
-
const A modifier for a local variable or field declaration that indicates the value is a constant. A
constthat is evaluated at compile time and can only be a predefined type.
-
continue A jump statement that skips the remaining statements in a statement block and continues to the next iteration in a loop.
-
decimal A 16-byte precise decimal datatype.
-
default A marker in a
switchstatement specifying the action to take when nocasestatements match theswitchexpression.
-
delegate
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access