You have probably at least figured this out already but ...
From the .NET Framework Class Library in MSDN:
Array implements the IsFixedSize property because it is required by the System.Collections.IList interface. This property is always true for all arrays.
An array with a fixed size does not allow the addition or removal of elements after the array is created, but it allows the modification of existing elements.
KABay
|