CompareArrays Método
Compares two arrays.
Espacio de nombres: Microsoft.SqlServer.Dts.Tasks.WebServiceTask
Ensamblado: Microsoft.SqlServer.WebServiceTask (en Microsoft.SqlServer.WebServiceTask.dll)
Sintaxis
'Declaración
Public Shared Function CompareArrays ( _
a As Object(), _
b As Object() _
) As Boolean
'Uso
Dim a As Object()
Dim b As Object()
Dim returnValue As Boolean
returnValue = Helper.CompareArrays(a, _
b)
public static bool CompareArrays(
Object[] a,
Object[] b
)
public:
static bool CompareArrays(
array<Object^>^ a,
array<Object^>^ b
)
static member CompareArrays :
a:Object[] *
b:Object[] -> bool
public static function CompareArrays(
a : Object[],
b : Object[]
) : boolean
Parámetros
- a
Tipo: array<System. . :: . .Object> [] () [] []
The first array to have in the comparison.
- b
Tipo: array<System. . :: . .Object> [] () [] []
The second array that you want to compare to the first.
Valor devuelto
Tipo: System. . :: . .Boolean
true if both arrays are nullNothingnullptrunites una referencia NULL (Nothing en Visual Basic).; false is returned if either array is nullNothingnullptrunites una referencia NULL (Nothing en Visual Basic)., their lengths are different, or an element in one is different that the matching element in the other array.
Vea también