| 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: SystemAssembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
 Syntax
Syntaxpublic 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: 
ObjectThe value at the specified position in the multidimensional 
Array.
 Exceptions
Exceptions| Exception | Condition | 
|---|
| ArgumentNullException | indices is null. | 
| ArgumentException | The number of dimensions in the current Array is not equal to the number of elements in indices. | 
| IndexOutOfRangeException | Any element in indices is outside the range of valid indexes for the corresponding dimension of the current Array. | 
 See Also
See Also