Arrays.DeepEquals(Object[], Object[]) Method

Definition

Returns true if the two specified arrays are deeply equal to one another.

[Android.Runtime.Register("deepEquals", "([Ljava/lang/Object;[Ljava/lang/Object;)Z", "")]
public static bool DeepEquals (Java.Lang.Object[]? a1, Java.Lang.Object[]? a2);
[<Android.Runtime.Register("deepEquals", "([Ljava/lang/Object;[Ljava/lang/Object;)Z", "")>]
static member DeepEquals : Java.Lang.Object[] * Java.Lang.Object[] -> bool

Parameters

a1
Object[]

one array to be tested for equality

a2
Object[]

the other array to be tested for equality

Returns

Boolean

true if the two arrays are equal

Attributes

Remarks

Java documentation for java.util.Arrays.deepEquals(java.lang.Object[], java.lang.Object[]).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to