Click or drag to resize
ArrayGetValue Method (Int32)
Gets the value at the specified position in the multidimensional Array. The indexes are specified as an array of 32-bit integers.

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public Object GetValue(
	params int[] indices
)

Parameters

indices
Type: SystemInt32
A one-dimensional array of 32-bit integers that represent the indexes specifying the position of the Array element to get.

Return Value

Type: Object
The value at the specified position in the multidimensional Array.
Exceptions
ExceptionCondition
ArgumentNullExceptionindices is null.
ArgumentExceptionThe number of dimensions in the current Array is not equal to the number of elements in indices.
IndexOutOfRangeExceptionAny element in indices is outside the range of valid indexes for the corresponding dimension of the current Array.
See Also