IImmutableSet<T>.Intersect(IEnumerable<T>) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
创建一个不可变集,其中只包含存在于此集和指定集内的元素。
public:
System::Collections::Immutable::IImmutableSet<T> ^ Intersect(System::Collections::Generic::IEnumerable<T> ^ other);
public System.Collections.Immutable.IImmutableSet<T> Intersect (System.Collections.Generic.IEnumerable<T> other);
abstract member Intersect : seq<'T> -> System.Collections.Immutable.IImmutableSet<'T>
Public Function Intersect (other As IEnumerable(Of T)) As IImmutableSet(Of T)
参数
- other
- IEnumerable<T>
要与当前 IImmutableSet<T> 进行比较的集合。
返回
一个新的不可变集,其中包含同时存在于两个集内的元素。