AdvisableHashSet<T>.IsProperSubsetOf Method |
Determines whether the current set is a proper (strict) subset of a specified collection.
Namespace: PostSharp.Patterns.Collections
Assembly: PostSharp.Patterns.Common (in PostSharp.Patterns.Common.dll) Version: 6.2.13.0 (6.2.13.0)

C#
public bool IsProperSubsetOf( IEnumerable<T> other )
Parameters
- other
- Type: System.Collections.Generic.IEnumerable<T>
The collection to compare to the current set.
Return Value
Type: Booleantrue if the current set is a proper subset of other; otherwise, false.
Implements
ISet<T>.IsProperSubsetOf(IEnumerable<T>)
Exception | Condition |
---|---|
ArgumentNullException | other is null. |
