KeyedByTypeCollection<TItem>.RemoveAll<T> 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从集合中移除所有具有指定类型的元素。
public:
generic <typename T>
System::Collections::ObjectModel::Collection<T> ^ RemoveAll();
public System.Collections.ObjectModel.Collection<T> RemoveAll<T> ();
member this.RemoveAll : unit -> System.Collections.ObjectModel.Collection<'T>
Public Function RemoveAll(Of T) () As Collection(Of T)
类型参数
- T
要从集合中移除的项的类型。
返回
Collection<T>,包含来自原始集合的类型 T
的对象。