ISet<T>.IsSupersetOf(IEnumerable<T>) 메서드

정의

현재 집합이 지정된 컬렉션의 상위 집합인지 여부를 확인합니다.

public:
 bool IsSupersetOf(System::Collections::Generic::IEnumerable<T> ^ other);
public bool IsSupersetOf (System.Collections.Generic.IEnumerable<T> other);
abstract member IsSupersetOf : seq<'T> -> bool
Public Function IsSupersetOf (other As IEnumerable(Of T)) As Boolean

매개 변수

other
IEnumerable<T>

현재 집합과 비교할 컬렉션입니다.

반환

현재 집합이 other의 상위 집합이면 true이고, 그렇지 않으면 false입니다.

예외

other이(가) null인 경우

설명

현재 집합과 동일한 요소가 포함된 경우 other 현재 집합은 여전히 의 other상위 집합으로 간주됩니다.

현재 집합에 보다 other적은 요소가 있는 경우 이 메서드는 항상 를 반환 false 합니다.

적용 대상