Java.Util.Arrays.DeepToString Method
Creates a "deep"String representation of the Object[] passed, such that if the array contains other arrays, the String representation of those arrays is generated as well.

Syntax

[Android.Runtime.Register("deepToString", "([Ljava/lang/Object;)Ljava/lang/String;", "")]
public static string DeepToString (Java.Lang.Object[] array)

Parameters

array
the Object array to convert.

Returns

Documentation for this section has not yet been entered.

Remarks

Creates a "deep"String representation of the Object[] passed, such that if the array contains other arrays, the String representation of those arrays is generated as well.

If any of the elements are primitive arrays, the generation is delegated to the other toString methods in this class. If any element contains a reference to the original array, then it will be represented as "[...]". If an element is an Object[], then its representation is generated by a recursive call to this method. All other elements are converted via the Java.Lang.String.ValueOf(Java.Lang.Object) method.

[Android Documentation]

Requirements

Namespace: Java.Util
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1