ComponentOne Bitmap for WPF
C1.WPF.DX.4.5.2 Assembly / C1.Util.DX Namespace / DXUtil Class / ToArray<T> Method
Type of the element
The enumerable source.

In This Topic
    ToArray<T> Method (DXUtil)
    In This Topic
    Transforms an IEnumerable to an array of T.
    Syntax
    'Declaration
     
    Public Shared Function ToArray(Of T)( _
       ByVal source As IEnumerable(Of T) _
    ) As T()
    public static T[] ToArray<T>( 
       IEnumerable<T> source
    )

    Parameters

    source
    The enumerable source.

    Type Parameters

    T
    Type of the element

    Return Value

    an array of T
    See Also