ParallelEnumerable.Repeat<TResult>(TResult, Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
產生包含一個重複值的平行序列。
public:
generic <typename TResult>
static System::Linq::ParallelQuery<TResult> ^ Repeat(TResult element, int count);
public static System.Linq.ParallelQuery<TResult> Repeat<TResult> (TResult element, int count);
static member Repeat : 'Result * int -> System.Linq.ParallelQuery<'Result>
Public Function Repeat(Of TResult) (element As TResult, count As Integer) As ParallelQuery(Of TResult)
類型參數
- TResult
要在結果序列中重複出現的值之類型。
參數
- element
- TResult
要重複的值。
- count
- Int32
這個值要在產生的序列中重複出現的次數。
傳回
ParallelQuery<TResult>
包含重複值的序列。
例外狀況
count
小於 0。