[]
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)
| Type | Name | Description |
|---|---|---|
| object[] | v1 | First array. |
| object[] | v2 | Second array. |
| Type | Description |
|---|---|
| bool | Returns true if arrays are equal, false otherwise. |