LiquidTechnologies.XmlObjects Namespace / LxNillable<T> Class / Create Method / Create(IEnumerable<T>) Method
The sequence of values to convert (null values are ignored)

In This Topic
    Create(IEnumerable<T>) Method
    In This Topic
    Converts a sequence of values into a sequence of LxNillable<T> wrapper classes, where IsNil is set to false.
    Syntax
    'Declaration
     
    
    Public Overloads Shared Function Create( _
       ByVal values As System.Collections.Generic.IEnumerable(Of T) _
    ) As System.Collections.Generic.IEnumerable(Of LxNillable(Of T))
    public static System.Collections.Generic.IEnumerable<LxNillable<T>> Create( 
       System.Collections.Generic.IEnumerable<T> values
    )

    Parameters

    values
    The sequence of values to convert (null values are ignored)

    Return Value

    The sequence of LxNillable<T> wrapper objects
    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