ImmutableArrayExtensions.All<T> 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得值,該值指示此陣列中的所有元素是否符合指定條件。
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static bool All(System::Collections::Immutable::ImmutableArray<T> immutableArray, Func<T, bool> ^ predicate);
public static bool All<T> (this System.Collections.Immutable.ImmutableArray<T> immutableArray, Func<T,bool> predicate);
static member All : System.Collections.Immutable.ImmutableArray<'T> * Func<'T, bool> -> bool
<Extension()>
Public Function All(Of T) (immutableArray As ImmutableArray(Of T), predicate As Func(Of T, Boolean)) As Boolean
類型參數
- T
集合所包含之元素的類型。
參數
- immutableArray
- ImmutableArray<T>
要檢查相符項目的陣列。
傳回
如果來源序列中的所有元素均通過所指定述詞中的測試,則為 true
;否則為 false
。