ComponentOne Bitmap for WinForms
C1.Win.C1DX.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 System.Collections.Generic.IEnumerable`1 to an array of T.
    Syntax
    'Declaration
     
    Public Shared Function ToArray(Of T)( _
       ByVal source As System.Collections.Generic.IEnumerable(Of T) _
    ) As T()
    public static T[] ToArray<T>( 
       System.Collections.Generic.IEnumerable<T> source
    )

    Parameters

    source
    The enumerable source.

    Type Parameters

    T
    Type of the element

    Return Value

    an array of T
    See Also