BitVector32.Item[] Property

Definition

Gets or sets the value of the specified section or bit flag.

Overloads

Item[BitVector32+Section]

Gets or sets the value stored in the specified BitVector32.Section.

Item[Int32]

Gets or sets the state of the bit flag indicated by the specified mask.

Item[BitVector32+Section]

Source:
BitVector32.cs
Source:
BitVector32.cs
Source:
BitVector32.cs

Gets or sets the value stored in the specified BitVector32.Section.

C#
public int this[System.Collections.Specialized.BitVector32.Section section] { get; set; }

Parameters

section
BitVector32.Section

A BitVector32.Section that contains the value to get or set.

Property Value

The value stored in the specified BitVector32.Section.

Remarks

The Item[] [Section] property is the indexer for a BitVector32 that is set up as sections, and the Item[] [int] property is the indexer for a BitVector32 that is set up as bit flags.

A BitVector32.Section is a window into the BitVector32 and is composed of the smallest number of consecutive bits that can contain the maximum value specified in CreateSection. For example, a section with a maximum value of 1 is composed of only one bit, whereas a section with a maximum value of 5 is composed of three bits. You can create a BitVector32.Section with a maximum value of 1 to serve as a Boolean, thereby allowing you to store integers and Booleans in the same BitVector32.

The C# language uses the this keyword to define the indexers instead of implementing the Item[] property. Visual Basic implements Item[] as a default property, which provides the same indexing functionality.

Retrieving the value of this property is an O(1) operation; setting the property is also an O(1) operation.

See also

Applies to

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1
UWP 10.0

Item[Int32]

Source:
BitVector32.cs
Source:
BitVector32.cs
Source:
BitVector32.cs

Gets or sets the state of the bit flag indicated by the specified mask.

C#
public bool this[int bit] { get; set; }

Parameters

bit
Int32

A mask that indicates the bit to get or set.

Property Value

true if the specified bit flag is on (1); otherwise, false.

Remarks

The Item[] [Section] property is the indexer for a BitVector32 that is set up as sections, and the Item[] [int] property is the indexer for a BitVector32 that is set up as bit flags.

Using this property on a BitVector32 that is set up as sections might cause unexpected results.

The C# language uses the this keyword to define the indexers instead of implementing the Item[] property. Visual Basic implements Item[] as a default property, which provides the same indexing functionality.

Retrieving the value of this property is an O(1) operation; setting the property is also an O(1) operation.

See also

Applies to

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1
UWP 10.0