Delegato DetermineLocalityCallback
Nota: questa API è ora obsoleta.
Determinando la località di un tipo di differenza specificato e a sinistra o a destra delle stringhe.
Spazio dei nomi: Microsoft.VisualStudio.Text.Differencing
Assembly: Microsoft.VisualStudio.Text.Data (in Microsoft.VisualStudio.Text.Data.dll)
Sintassi
'Dichiarazione
<ObsoleteAttribute("Methods that use this callback are now deprecated, and instances of this callback will not be used.")> _
Public Delegate Function DetermineLocalityCallback ( _
differenceType As StringDifferenceTypes, _
leftStrings As IList(Of String), _
rightStrings As IList(Of String) _
) As Nullable(Of Integer)
[ObsoleteAttribute("Methods that use this callback are now deprecated, and instances of this callback will not be used.")]
public delegate Nullable<int> DetermineLocalityCallback(
StringDifferenceTypes differenceType,
IList<string> leftStrings,
IList<string> rightStrings
)
[ObsoleteAttribute(L"Methods that use this callback are now deprecated, and instances of this callback will not be used.")]
public delegate Nullable<int> DetermineLocalityCallback(
StringDifferenceTypes differenceType,
IList<String^>^ leftStrings,
IList<String^>^ rightStrings
)
[<ObsoleteAttribute("Methods that use this callback are now deprecated, and instances of this callback will not be used.")>]
type DetermineLocalityCallback =
delegate of
differenceType:StringDifferenceTypes *
leftStrings:IList<string> *
rightStrings:IList<string> -> Nullable<int>
JScript non supporta i delegati.
Parametri
differenceType
Tipo: Microsoft.VisualStudio.Text.Differencing.StringDifferenceTypesIl tipo di differenza per ottenere la località. Ciò è sempre un solo tipo.
leftStrings
Tipo: IList<String>Il testo di sinistra, decomposto in un elenco di stringhe.
rightStrings
Tipo: IList<String>Il testo di destra, decomposto in un elenco di stringhe.
Valore restituito
Tipo: Nullable<Int32>
La località, se richiesto, o nullriferimento null (Nothing in Visual Basic) per eseguire il fallback della località predefinita.