ActiveReports 18 .NET Edition
MESCIUS.ActiveReports.Viewer.Common Assembly / GrapeCity.Viewer.Common Namespace / EnumerableExtensions Class / GetRecursive<T> Method

In This Topic
    GetRecursive<T> Method
    In This Topic
    Extract all descendants recursively
    Syntax
    'Declaration
     
    Public Shared Function GetRecursive(Of T)( _
       ByVal source As IEnumerable(Of T), _
       ByVal selector As Func(Of T,IEnumerable(Of T)) _
    ) As IEnumerable(Of T)
    public static IEnumerable<T> GetRecursive<T>( 
       IEnumerable<T> source,
       Func<T,IEnumerable<T>> selector
    )

    Parameters

    source
    selector

    Type Parameters

    T
    See Also