LiquidTechnologies.XmlObjects Namespace / LxNillable<T> Class / Implicit Type Conversion Operator / Implicit Type Conversion(LxNillable<T>,T) Operator
The value to convert to a LxNillable<T>

In This Topic
    Implicit Type Conversion(LxNillable<T>,T) Operator
    In This Topic
    implicitly converts a value to a LxNillable<T> object
    Syntax
    '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.
    Requirements

    Target Platforms: Windows 10, Windows 8, Windows 7, Windows Vista, Windows Server 2016, Windows Server 2012, Windows Server 2008. Please ensure you have the latest Service Pack for your operating system installed.

    See Also