Compartilhar via


Método IComparer(K).Compare

Não referencie esse membro diretamente no código. Ele dá suporte à infraestrutura do SQL Server. Compares two keys.

Namespace:  Microsoft.SqlServer.Management.Sdk.Sfc
Assembly:  Microsoft.SqlServer.Management.Sdk.Sfc (em Microsoft.SqlServer.Management.Sdk.Sfc.dll)

Sintaxe

'Declaração
Private Function Compare ( _
    key1 As K, _
    key2 As K _
) As Integer Implements IComparer(Of K).Compare
'Uso
Dim instance As SfcCollatedDictionaryCollection
Dim key1 As K
Dim key2 As K
Dim returnValue As Integer

returnValue = CType(instance, IComparer(Of K)).Compare(key1, _
    key2)
int IComparer<K>.Compare(
    K key1,
    K key2
)
private:
virtual int Compare(
    K key1, 
    K key2
) sealed = IComparer<K>::Compare
private abstract Compare : 
        key1:'K * 
        key2:'K -> int 
private override Compare : 
        key1:'K * 
        key2:'K -> int 
JScript dá suporte ao uso de implementações de interfaces explícitas, mas não a declarações de implementações novas.

Parâmetros

  • key1
    Tipo: K
    The first key to compare.
  • key2
    Tipo: K
    The second key to compare.

Valor de retorno

Tipo: System. . :: . .Int32
A Int32 value.

Implementa

IComparer< (Of < ( <'T> ) > ) >. . :: . .Compare(T, T)