SkipWhile Method

Task Parallel System.Threading

Overload List

  NameDescription
SkipWhile<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Boolean>)>))
Bypasses elements in a parallel sequence as long as a specified condition is true and then returns the remaining elements.
SkipWhile<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Int32, Boolean>)>))
Bypasses elements in a parallel sequence as long as a specified condition is true and then returns the remaining elements. The element's index is used in the logic of the predicate function.

See Also