[]
Compares two object arrays using AreObjectsEqual(object, object) method, returns true if arrays have same size and contains same objects.
public static bool AreObjectArraysEqual(object[] v1, object[] v2)
Public Shared Function AreObjectArraysEqual(v1 As Object(), v2 As Object()) As Boolean
| Type | Name | Description |
|---|---|---|
| object[] | v1 | First array. |
| object[] | v2 | Second array. |
| Type | Description |
|---|---|
| bool | Returns true if arrays are equal, false otherwise. |