'Declaration
Overloads Public Operator Widening CType( _ ByVal value As T _ ) As LxNillable(Of T)
public LxNillable<T> operator implicit( T value )
Parameters
- value
- The value to convert to a LxNillable<T>
Return Value
If the value is non-null then a LxNillable<T> object is returned wrapping the value(with IsNil set to false). If value is null then null is returned.