AdvisableHashSet<T>.IsSubsetOf Method |
Determines whether a set is a subset of a specified collection.
Namespace: PostSharp.Patterns.Collections
Assembly: PostSharp.Patterns.Common (in PostSharp.Patterns.Common.dll) Version: 2023.0.3.0 (2023.0.3.0)
C#
public bool IsSubsetOf( 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 subset of other; otherwise, false.
Implements
ISet<T>.IsSubsetOf(IEnumerable<T>)Exception | Condition |
---|---|
ArgumentNullException | other is null. |