Array Properties
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
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; zero if there are no elements in the array. |
|
Rank | Gets the zero-based 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. |
|
IList.Item | Gets or sets the element at the specified index. |
Show: