ECMA-334 C# Language Specification

12.2: Default values

The following categories of variables are automatically initialized to their default values:

The default value of a variable depends on the type of the variable and is determined as follows:

[Note: Initialization to default values is typically done by having the memory manager or garbage collector initialize memory to all-bits-zero before it is allocated for use. For this reason, it is convenient to use all-bits-zero to represent the null reference. end note]