C# Array SetValue(Object, Int32, Int32, Int32)
Description
Array SetValue(Object, Int32, Int32, Int32)
sets a value
to the element at the specified position in the three-dimensional Array.
The indexes are specified as 32-bit integers.
Syntax
Array.SetValue(Object, Int32, Int32, Int32)
has the following syntax.
public void SetValue(
Object value,//from w w w . j a v a 2 s . c o m
int index1,
int index2,
int index3
)
Parameters
Array.SetValue(Object, Int32, Int32, Int32)
has the following parameters.
value
- The new value for the specified element.index1
- A 32-bit integer that represents the first-dimension index of the Array element to set.index2
- A 32-bit integer that represents the second-dimension index of the Array element to set.index3
- A 32-bit integer that represents the third-dimension index of the Array element to set.
Returns
Array.SetValue(Object, Int32, Int32, Int32)
method returns
Example
The following code example demonstrates how to set and get a specific value in a one-dimensional or multidimensional array.
using System;// w ww. java 2s . c o m
public class SamplesArray {
public static void Main() {
String[,,] myArr3 = new String[5,5,5];
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.