'Declaration
Overloads Public Operator Widening CType( _ ByVal nillableWrapper As LxNillable(Of T) _ ) As T
public T operator implicit( LxNillable<T> nillableWrapper )
Parameters
- nillableWrapper
- The nillable wrapper to extract the value from
Return Value
If nillableWrapper is null and T is a class then null is returned. If nillableWrapper is null and T is a struct then default(T) is returned. Otherwise the Value contained in nillableWrapper is returned.