Nullability
Specifies the nullability in the given context.
NeverNull = 1
Never null because this is not a reference type.
NotNullable = 2
Reference type is not nullable.
Nullable = 3
Reference type can be null.
Unknown = 0
Nullability is unknown (NRT is not enabled).