BitArray.Length Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the number of elements in the BitArray.
public:
property int Length { int get(); void set(int value); };
public int Length { get; set; }
member this.Length : int with get, set
Public Property Length As Integer
Property Value
The number of elements in the BitArray.
Exceptions
The property is set to a value that is less than zero.
Remarks
Length and Count return the same value. Length can be set to a specific value, but Count is read-only.
If Length is set to a value that is less than Count, the BitArray is truncated and the elements after the index value
-1 are deleted.
If Length is set to a value that is greater than Count, the new elements are set to false
.
Retrieving the value of this property is an O(1)
operation. Setting this property is an O(n)
operation.