BitArray Constructor (array<Int32[])

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Initializes a new instance of the BitArray class that contains bit values copied from the specified array of 32-bit integers.

Namespace:  System.Collections
Assembly:  mscorlib (in mscorlib.dll)

Syntax

'Declaration
Public Sub New ( _
    values As Integer() _
)
public BitArray(
    int[] values
)

Parameters

  • values
    Type: array<System.Int32[]
    An array of integers containing the values to copy, where each integer represents 32 consecutive bits.

Exceptions

Exception Condition
ArgumentNullException

values is nulla null reference (Nothing in Visual Basic).

ArgumentException

The length of values is greater than MaxValue

Remarks

The number in the first values array element represents bits 0 through 31, the second number in the array represents bits 32 through 63, and so on. The Least Significant Bit of each integer represents the lowest index value: " values [0] & 1" represents bit 0, " values [0] & 2" represents bit 1, " values [0] & 4" represents bit 2, and so on.

This constructor is an O(n) operation, where n is the number of elements in values.

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Xbox 360, Windows Phone OS 7.0

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.