ParallelEnumerable.Reverse<TSource> 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
反转并行序列中元素的顺序。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Linq::ParallelQuery<TSource> ^ Reverse(System::Linq::ParallelQuery<TSource> ^ source);
public static System.Linq.ParallelQuery<TSource> Reverse<TSource> (this System.Linq.ParallelQuery<TSource> source);
static member Reverse : System.Linq.ParallelQuery<'Source> -> System.Linq.ParallelQuery<'Source>
<Extension()>
Public Function Reverse(Of TSource) (source As ParallelQuery(Of TSource)) As ParallelQuery(Of TSource)
类型参数
- TSource
source
的元素类型。
参数
- source
- ParallelQuery<TSource>
要反转的值序列。
返回
一个序列,其元素以相反顺序对应于输入序列的元素。
例外
source
为 null 引用(在 Visual Basic 中为 Nothing)。
已使用通过 WithCancellation<TSource>(ParallelQuery<TSource>, CancellationToken) 传递的令牌取消了查询。
评估查询期间发生一个或多个异常。