C# Array GetValue(Int32)
Description
Array GetValue(Int32)
gets the value at the specified
position in the one-dimensional Array. The index is specified as a 32-bit
integer.
Syntax
Array.GetValue(Int32)
has the following syntax.
public Object GetValue(
int index
)
Parameters
Array.GetValue(Int32)
has the following parameters.
index
- A 32-bit integer that represents the position of the Array element to get.
Returns
Array.GetValue(Int32)
method returns The value at the specified position in the one-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;/*from www . j av a 2 s . c om*/
public class SamplesArray {
public static void Main() {
String[] myArr1 = new String[5];
myArr1.SetValue( "three", 3 );
Console.WriteLine( "[3]: {0}", myArr1.GetValue( 3 ) );
}
}