Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Determines whether this set is a subset of another set.
Namespace: Microsoft.SqlServer.Management.Sdk.Sfc
Assembly: Microsoft.SqlServer.Management.Sdk.Sfc (in Microsoft.SqlServer.Management.Sdk.Sfc.dll)
Syntax
'Declaration
Function IsSubsetOf ( _
other As IEnumerable(Of T) _
) As Boolean
'Usage
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
Parameters
- other
Type: System.Collections.Generic.IEnumerable<T>
The specified set to check against this set.
Return Value
Type: System.Boolean
true if this set is a subset of the specified set; otherwise, false.