Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Compares two arrays.
Namespace: Microsoft.SqlServer.Dts.Tasks.WebServiceTask
Assembly: Microsoft.SqlServer.WebServiceTask (in Microsoft.SqlServer.WebServiceTask.dll)
Syntax
'Declaration
Public Shared Function CompareArrays ( _
a As Object(), _
b As Object() _
) As Boolean
'Usage
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
Parameter
- a
Typ: array<System.Object[]
The first array to have in the comparison.
- b
Typ: array<System.Object[]
The second array that you want to compare to the first.
Rückgabewert
Typ: System.Boolean
true if both arrays are nullein NULL-Verweis (Nothing in Visual Basic); false is returned if either array is nullein NULL-Verweis (Nothing in Visual Basic), their lengths are different, or an element in one is different that the matching element in the other array.