Click or drag to resize
ArraySetValue Method (Object, Int32, Int32)
Sets a value to the element at the specified position in the two-dimensional Array. The indexes are specified as 32-bit integers.

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public void SetValue(
	Object value,
	int index1,
	int index2
)

Parameters

value
Type: SystemObject
The new value for the specified element.
index1
Type: SystemInt32
A 32-bit integer that represents the first-dimension index of the Array element to set.
index2
Type: SystemInt32
A 32-bit integer that represents the second-dimension index of the Array element to set.
Exceptions
ExceptionCondition
ArgumentExceptionThe current Array does not have exactly two dimensions.
InvalidCastExceptionvalue cannot be cast to the element type of the current Array.
IndexOutOfRangeExceptionEither index1 or index2 is outside the range of valid indexes for the corresponding dimension of the current Array.
See Also