The members of System.Nullable<T> are listed below.
See Also: Inherited members from System.ValueType
Nullable(T) | Constructs and initializes a new instance of Nullable<T> giving it the specified initial value. |
[read-only] | HasValue | bool.
![]() Gets a value indicating whether the current Nullable`1 object has a valid value of its underlying type. |
[read-only] | Value | T.
![]() Gets the value of the current Nullable`1 object if it has been assigned a valid underlying value. |
override | Equals(object)
| |
override | GetHashCode()
| |
GetValueOrDefault()
| ||
GetValueOrDefault(T)Returns the value of the current instance, or if it has none, returns alternateDefaultValue. | ||
override | ToString()
|
static | Conversion to T(Explicit) | Perform an explicit conversion of a Nullable<T> value to type T. |
static | Conversion to System.Nullable<T>(Implicit) | Perform an implicit conversion of a T value to Nullable<T>. |