This documentation is archived and is not being maintained.
default (C# Reference)
Visual Studio 2012
The default keyword.
The default keyword can be used in the switch statement or in generic code:
-
The switch statement: Specifies the default label.
-
Generic code: Specifies the default value of the type parameter. This will be null for reference types and zero for value types.
Show: