IReadOnlySet<T>.IsSubsetOf 메서드 (IEnumerable<T>)
Determines whether this set is a subset of another set.
네임스페이스: Microsoft.SqlServer.Management.Sdk.Sfc
어셈블리: Microsoft.SqlServer.Management.Sdk.Sfc(Microsoft.SqlServer.Management.Sdk.Sfc.dll)
구문
‘선언
Function IsSubsetOf ( _
other As IEnumerable(Of T) _
) As Boolean
‘사용 방법
Dim instance As IReadOnlySet
Dim other As IEnumerable(Of T)
Dim returnValue As Boolean
returnValue = instance.IsSubsetOf(other)
bool IsSubsetOf(
IEnumerable<T> other
)
bool IsSubsetOf(
IEnumerable<T>^ other
)
abstract IsSubsetOf :
other:IEnumerable<'T> -> bool
function IsSubsetOf(
other : IEnumerable<T>
) : boolean
매개 변수
- other
유형: System.Collections.Generic.IEnumerable<T>
The specified set to check against this set.
반환 값
유형: System.Boolean
true if this set is a subset of the specified set; otherwise, false.