System::Collections::Generic::ISet::IsProperSupersetOf method

ISet::IsProperSupersetOf method

检查当前集合是否是另一个容器的严格超集。

virtual bool System::Collections::Generic::ISet<T>::IsProperSupersetOf(IEnumerablePtr other)=0
参数类型描述
其他IEnumerablePtr用于比较的子集。

ReturnValue

如果 other 中的所有元素都存在于集合中且集合的元素多于 other,则返回 true;否则返回 false。

另见