IExtensionCollection<T>.FindAll<E> 方法

定义

查找集合中由 E 指定的所有扩展对象。Finds all extension object in the collection specified by E.

public:
generic <typename E>
 System::Collections::ObjectModel::Collection<E> ^ FindAll();
public System.Collections.ObjectModel.Collection<E> FindAll<E> ();
abstract member FindAll : unit -> System.Collections.ObjectModel.Collection<'E>
Public Function FindAll(Of E) () As Collection(Of E)

类型参数

E

扩展对象的类型。The type of extension object.

返回

Collection<E>

集合中实现此指定类型的所有扩展对象的集合。A collection of all extension objects in the collection that implement the specified type.

适用于