Array.GetShort(Object, Int32) Method

Definition

Returns the value of the indexed component in the specified array object, as a short.

[Android.Runtime.Register("getShort", "(Ljava/lang/Object;I)S", "")]
public static short GetShort (Java.Lang.Object array, int index);
[<Android.Runtime.Register("getShort", "(Ljava/lang/Object;I)S", "")>]
static member GetShort : Java.Lang.Object * int -> int16

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 short.

Java documentation for java.lang.reflect.Array.getShort(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.

Applies to