System::Collections::Generic::ISet::IsSubsetOf method

ISet::IsSubsetOf method

Checks if current set is a subset of other container.

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

ReturnValue

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

See Also