IReadOnlySet<T> 인터페이스
Defines properties and methods for the generic immutable sets.
네임스페이스: Microsoft.SqlServer.Management.Sdk.Sfc
어셈블리: Microsoft.SqlServer.Management.Sdk.Sfc(Microsoft.SqlServer.Management.Sdk.Sfc.dll)
구문
‘선언
Public Interface IReadOnlySet(Of T) _
Inherits IReadOnlySet, IReadOnlyCollection(Of T), IReadOnlyCollection, _
IEnumerable(Of T), IEnumerable
‘사용 방법
Dim instance As IReadOnlySet(Of T)
public interface IReadOnlySet<T> : IReadOnlySet,
IReadOnlyCollection<T>, IReadOnlyCollection, IEnumerable<T>, IEnumerable
generic<typename T>
public interface class IReadOnlySet : IReadOnlySet,
IReadOnlyCollection<T>, IReadOnlyCollection, IEnumerable<T>, IEnumerable
type IReadOnlySet<'T> =
interface
interface IReadOnlySet
interface IReadOnlyCollection<'T>
interface IReadOnlyCollection
interface IEnumerable<'T>
interface IEnumerable
end
JScript는 제네릭 형식 및 메서드를 지원하지 않습니다.
유형 매개 변수
- T
The type of the elements in the set.
IReadOnlySet<T> 유형에서 다음 멤버를 표시합니다.
속성
이름 | 설명 | |
---|---|---|
![]() |
Count | Gets the number of items that are contained in the collection. (IReadOnlyCollection에서 상속됨) |
맨 위로 이동
메서드
이름 | 설명 | |
---|---|---|
![]() |
Contains | Determines whether the specified item is contained in the collection. (IReadOnlyCollection<T>에서 상속됨) |
![]() |
CopyTo | Copies the elements of the collection to the specified array, starting at a particular array index. (IReadOnlyCollection<T>에서 상속됨) |
![]() |
GetEnumerator | (IEnumerable<T>에서 상속됨) |
![]() |
IsProperSubsetOf(IEnumerable) | Checks if this set is a subset of another set, but differs from it. (IReadOnlySet에서 상속됨) |
![]() |
IsProperSubsetOf(IEnumerable<T>) | Determines whether this set is a subset of another set, but differs from it. |
![]() |
IsProperSupersetOf(IEnumerable) | Checks if this set is a superset of another set, but differs from it. (IReadOnlySet에서 상속됨) |
![]() |
IsProperSupersetOf(IEnumerable<T>) | Determines whether this set is a superset of another set, but differs from it. |
![]() |
IsSubsetOf(IEnumerable) | Checks if this set is a subset of another set. (IReadOnlySet에서 상속됨) |
![]() |
IsSubsetOf(IEnumerable<T>) | Determines whether this set is a subset of another set. |
![]() |
IsSupersetOf(IEnumerable) | Checks if this set is a superset of another set. (IReadOnlySet에서 상속됨) |
![]() |
IsSupersetOf(IEnumerable<T>) | Determines whether this set is a superset of another set. |
![]() |
Overlaps(IEnumerable) | Checks if this set has any elements in common with another set. (IReadOnlySet에서 상속됨) |
![]() |
Overlaps(IEnumerable<T>) | Determines whether this set has any elements in common with another set. |
![]() |
SetEquals(IEnumerable) | Checks if this set contains the same and only the same elements as the other. (IReadOnlySet에서 상속됨) |
![]() |
SetEquals(IEnumerable<T>) | Determines whether this set contains the same and only the same elements as the other. |
맨 위로 이동