Array.GetBoolean(Object, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the value of the indexed component in the specified
array object, as a boolean
.
[Android.Runtime.Register("getBoolean", "(Ljava/lang/Object;I)Z", "")]
public static bool GetBoolean (Java.Lang.Object array, int index);
[<Android.Runtime.Register("getBoolean", "(Ljava/lang/Object;I)Z", "")>]
static member GetBoolean : Java.Lang.Object * int -> bool
Parameters
- array
- Object
the array
- index
- Int32
the index
Returns
the value of the indexed component in the specified array
- Attributes
Exceptions
if array == null
if array
is not an array or the element at the
index position can not be converted to the return type
if index = array.length
Remarks
Returns the value of the indexed component in the specified array object, as a boolean
.
Java documentation for java.lang.reflect.Array.getBoolean(java.lang.Object, int)
.
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.