I noticed that arrays have the SetValue method, which seems a little out of place when you could just use the indexers. Is there some special purpose for SetValue? The MSDN article didn't seem to say what SetValue was for, just how to use it. Which method would be more efficient to use as far as speed goes?
Asked
Active
Viewed 1.2k times
1 Answers
18
Sometimes all you have of an array is that it's an Array
. The Array
class does not have indexers, so the best way to set/get element values on it is via the GetValue
and SetValue
methods. For example:
private void M(Array array)
{
array[0] = 5; // <-- Compiler error
array.SetValue(5, 0); // <-- Works
}

Kirk Woll
- 76,112
- 22
- 180
- 195
-
3Also, if you do not know the number of dimensions of the array at compile time, you can use the `SetValue(Object, Int32[])` overload to specify the elements at runtime: http://msdn.microsoft.com/en-us/library/758awxk7.aspx – Chris Sinclair May 16 '12 at 22:00
-
Where does the indexes start? One would expect 0, but today I encountered a value returned from a COM component with a .NET type of Array, but the indexes started at 1, not 0. – Peter Mortensen Jul 26 '15 at 18:13
-
@PeterMortensen, COM is indeed a scary place. :) But that's interesting information. – Kirk Woll Jul 26 '15 at 18:14
-
@PeterMortensen, the lower bound of a single dimensional array can be found using `Array.GetLowerBound(0)`. For multidimensional arrays replace 0 with whatever dimension you're interested in. – rjvdboon Nov 25 '16 at 08:07