System::Collections::Generic::ISet::IsSupersetOf method

ISet::IsSupersetOf method

Checks if current set is a superset of other container.

virtual bool System::Collections::Generic::ISet<T>::IsSupersetOf(IEnumerablePtr other)=0
ParameterTypeDescription
otherIEnumerablePtrSubset to check against.

ReturnValue

True if all elements in other are present in set, false otherwise.

See Also