Used within a loop such that control is transferred to the next iteration. |
decimal | Specifies a data type representing a 128-bit data. It can approximately represent a number from ±1.0×10-28 to ±7.9×1028. |
default | Used within a switch statement to indicate the default match if none of the other case statements is matched. Can also be used in generics to specify the default value of the type parameter. |
delegate | Used to declare a reference type variable that references a method name/anonymous method. |
do | Executes a block of code repeatedly until a specified expression returns false. Used together with the while keyword to form a do-while statement. |
double | Specifies a data type that represents a 64-bit floating point number. It can approximately represent a number from ±5.0×10-324 to ±1.7×10308. |
else | Used with the if keyword to form an if-else statement. else defines the block that will be executed if the expression specified in the if statement is evaluated to false. |
enum | Used to define an enumeration. |
event | Used to define an event within a class. |
explicit | Defines a cast operation that requires the programmer to explicitly select the cast to be performed. |
extern | Declares a method that is implemented externally. |
false | Used as either an operator or as a literal. One of the possible values in a bool variable. |
finally | Used in a try-catch block to contain code that cleans up the code even if an exception occurs. Statements contained within a finally block are always executed. |
fixed | Prevents the garbage collector from relocating a movable variable. |
float | Specifies a data type that represents a 32-bit floating point number. It can approximately represent a number from ±1.5×10-45 to ±3.4×1038. |
for | Encloses a block of statements that will be executed repeatedly until a specified expression returns false. |
foreach | Used to iterate through a collection of items. |
goto | Used to transfer control of a program to a labeled statement. |
if | Determines if a statement (or block of statements) is to be executed based on the result of a Boolean expression. |
implicit | Used to declare an implicit cast operation. |
in | Used in a foreach statement to specify the collection you want to iterate through. |
int | Specifies a data type that represents a signed 32-bit integer number. It can represent a |