Array Properties
.NET Framework (current version)
Namespace:
System
Assembly: mscorlib (in mscorlib.dll)
| 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 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. For example, a one-dimensional array returns 1, a two-dimensional array returns 2, and so on. |
![]() | 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(Int32) | Gets or sets the element at the specified index. |
Show:


