C# Array GetValue(Int64, Int64, Int64)
Description
Array GetValue(Int64, Int64, Int64)
gets the value at
the specified position in the three-dimensional Array. The indexes are
specified as 64-bit integers.
Syntax
Array.GetValue(Int64, Int64, Int64)
has the following syntax.
[ComVisibleAttribute(false)]// w w w. j a va 2 s .c o m
public Object GetValue(
long index1,
long index2,
long index3
)
Parameters
Array.GetValue(Int64, Int64, Int64)
has the following parameters.
index1
- A 64-bit integer that represents the first-dimension index of the Array element to get.index2
- A 64-bit integer that represents the second-dimension index of the Array element to get.index3
- A 64-bit integer that represents the third-dimension index of the Array element to get.
Returns
Array.GetValue(Int64, Int64, Int64)
method returns The value at the specified position in the three-dimensional Array.
Example
The following code example demonstrates how to set and get a specific value in a one-dimensional or multidimensional array.
using System;// w w w. j a va2s . co m
public class SamplesArray {
public static void Main() {
// Creates and initializes a three-dimensional array.
String[,,] myArr3 = new String[5,5,5];
// Sets the element at index 1,2,3.
myArr3.SetValue( "one-two-three", 1, 2, 3 );
Console.WriteLine( "[1,2,3]: {0}", myArr3.GetValue( 1, 2, 3 ) );
}
}
The code above generates the following result.