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

In This Topic
    Any<T> Method
    In This Topic
    Test if there is an element in this enumeration.
    Syntax
    'Declaration
     
    Public Shared Function Any(Of T)( _
       ByVal source As IEnumerable(Of T) _
    ) As Boolean
    public static bool Any<T>( 
       IEnumerable<T> source
    )

    Parameters

    source
    The enumerable source.

    Type Parameters

    T
    Type of the element

    Return Value

    true if there is an element in this enumeration, false otherwise
    See Also