'宣言
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 )
パラメータ
- source
- selector
型パラメータ
- T