C# Array SetValue(Object, Int32)
Description
Array SetValue(Object, Int32)
sets a value to the element
at the specified position in the one-dimensional Array. The index is specified
as a 32-bit integer.
Syntax
Array.SetValue(Object, Int32)
has the following syntax.
public void SetValue(
Object value,
int index
)
Parameters
Array.SetValue(Object, Int32)
has the following parameters.
value
- The new value for the specified element.index
- A 32-bit integer that represents the position of the Array element to set.
Returns
Array.SetValue(Object, Int32)
method returns
Example
The following code example demonstrates how to set and get a specific value in a one-dimensional or multidimensional array.
// ww w. ja v a 2 s . c o m
using System;
public class SamplesArray {
public static void Main() {
String[] myArr1 = new String[5];
// Sets the element at index 3.
myArr1.SetValue( "three", 3 );
Console.WriteLine( "[3]: {0}", myArr1.GetValue( 3 ) );
}
}
The code above generates the following result.