IReadOnlySet.IsProperSubsetOf(IEnumerable) Method

Definition

Check if this set is a subset of other, but not the same as it.

public bool IsProperSubsetOf (System.Collections.IEnumerable other);
abstract member IsProperSubsetOf : System.Collections.IEnumerable -> bool
Public Function IsProperSubsetOf (other As IEnumerable) As Boolean

Parameters

other
IEnumerable

The sequence to check against.

Returns

True if this set is a proper subset of other; otherwise false.

Applies to