You are here: Start » AVL.NET » Nullable Class
Nullable Class
| Namespace: | AvlNet |
|---|---|
| Assembly: | AVL.NET.TS.dll |
Helper static class that is intended to create nullable types easily with type parameter skipped.
Constructors
| Constructor | Description | |
|---|---|---|
| Nullable() |
Methods
| Name | Description | |
|---|---|---|
| CreateSafe() | Creates an empty SafeNullableRef<T> object which HasValue property is false. | |
| CreateSafe(T) | Creates a non-empty SafeNullableRef<T> object that holds reference to the given object t, and that takes responsibility for disposing the t object. | |
| Create() | Creates an empty NullableRef<T> object which HasValue property is false. | |
| Create(T) | Creates a non-empty NullableRef<T> object that holds reference to the given object t. | |
| Equals(object) | Inherited from System.Object | |
| GetHashCode() | Inherited from System.Object | |
| GetType() | Inherited from System.Object | |
| ToString() | Inherited from System.Object |
