ImmutableArray<T>.OfType<TResult> メソッド

定義

この配列の要素を、指定した型に割り当て可能な要素にフィルター処理します。

public:
generic <typename TResult>
 System::Collections::Generic::IEnumerable<TResult> ^ OfType();
public System.Collections.Generic.IEnumerable<TResult> OfType<TResult>();
member this.OfType : unit -> seq<'Result>
Public Function OfType(Of TResult) () As IEnumerable(Of TResult)

型パラメーター

TResult

シーケンスの要素をフィルター処理する型。

返品

IEnumerable<TResult>

IEnumerable型の入力シーケンスの要素を含むTResult

適用対象