The default keyword.
The default keyword can be used in the switch statement or in a default value expression:
The switch statement: Specifies the default label.
Default value expressions: Produces the default value of the type. This will be null for reference types and zero for value types, and the 0 bit pattern for structs.


