Array Properties
.NET Framework 4
The Array type exposes the following members.
| Name | Description | |
|---|---|---|
|
IsFixedSize | Gets a value indicating whether the Array has a fixed size. |
|
IsReadOnly | Gets a value indicating whether the Array is read-only. |
|
IsSynchronized | Gets a value indicating whether access to the Array is synchronized (thread safe). |
|
Length | Gets a 32-bit integer that represents the total number of elements in all the dimensions of the Array. |
|
LongLength | Gets a 64-bit integer that represents the total number of elements in all the dimensions of the Array. |
|
Rank | Gets the rank (number of dimensions) of the Array. |
|
SyncRoot | Gets an object that can be used to synchronize access to the Array. |
| Name | Description | |
|---|---|---|
|
ICollection.Count | Gets the number of elements contained in the Array. |
|
ICollection.IsSynchronized | Gets a value that indicates whether access to the Array is synchronized (thread safe). |
|
ICollection.SyncRoot | Gets an object that can be used to synchronize access to the Array. |
|
IList.IsFixedSize | Gets a value that indicates whether the Array has a fixed size. |
|
IList.IsReadOnly | Gets a value that indicates whether the Array is read-only. |
|
IList.Item | Gets or sets the element at the specified index. |