show/hide this revision's text 2 clarified

Nullable allows you to take a value type and make it like a reference type, in the sense that the value either exists or not (is null). Since a reference type is already nullable it is not allowed.

Quoted from MSDN:

The Nullable(T) structure supports using only a value type as a nullable type because reference types are nullable by design.

show/hide this revision's text 1

Nullable allows you to take a value type and make it like a reference type. Since a reference type is already nullable it is not allowed.

Quoted from MSDN:

The Nullable(T) structure supports using only a value type as a nullable type because reference types are nullable by design.