ISet<T>.IntersectWith(IEnumerable<T>) 方法
定义
修改当前集,使该集仅包含也存在在指定集合中的元素。Modifies the current set so that it contains only elements that are also in a specified collection.
public:
void IntersectWith(System::Collections::Generic::IEnumerable<T> ^ other);
public void IntersectWith (System.Collections.Generic.IEnumerable<T> other);
abstract member IntersectWith : seq<'T> -> unit
Public Sub IntersectWith (other As IEnumerable(Of T))
参数
- other
- IEnumerable<T>
要与当前集进行比较的集合。The collection to compare to the current set.
例外
other 为 null。other is null.
注解
此方法将忽略中的任何重复元素 other 。This method ignores any duplicate elements in other.