ArrayGetValue Method (Int32, Int32, Int32) |
Gets the value at the specified position in the three-dimensional
Array. The indexes are specified as 32-bit integers.
Namespace: SystemAssembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax public Object GetValue(
int index1,
int index2,
int index3
)
Parameters
- index1
- Type: SystemInt32
A 32-bit integer that represents the first-dimension index of the Array element to get. - index2
- Type: SystemInt32
A 32-bit integer that represents the second-dimension index of the Array element to get. - index3
- Type: SystemInt32
A 32-bit integer that represents the third-dimension index of the Array element to get.
Return Value
Type:
ObjectThe value at the specified position in the three-dimensional
Array.
Exceptions Exception | Condition |
---|
ArgumentException | The current Array does not have exactly three dimensions. |
IndexOutOfRangeException | index1 or index2 or index3 is outside the range of valid indexes for the corresponding dimension of the current Array. |
See Also