Click or drag to resize
AlgorithmsIsProperSubsetOf Method
Overload List
  NameDescription
Public methodStatic memberIsProperSubsetOfT(IEnumerableT, IEnumerableT)
Determines if one collection is a proper subset of another, considered as sets. The first set is a proper subset of the second set if every item in the first set also occurs in the second set, and the first set is strictly smaller than the second set. If an item appears X times in the first set, it must appear at least X times in the second set.
Public methodStatic memberIsProperSubsetOfT(IEnumerableT, IEnumerableT, IEqualityComparerT)
Determines if one collection is a proper subset of another, considered as sets. The first set is a proper subset of the second set if every item in the first set also occurs in the second set, and the first set is strictly smaller than the second set. If an item appears X times in the first set, it must appear at least X times in the second set.
Top
See Also