You are here: Start » AVL.NET » Nullable Class

Nullable Class

Helper static class that is intended to create nullable types easily with type parameter skipped.

Namespace:AvlNet
Assembly:AVL.NET.TS.dll

Constructors

 ConstructorDescription
Nullable()

Methods

 NameDescription
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

Remarks

See also