BitArray Constructor (Int32[])
Initializes a new instance of the BitArray class that contains bit values copied from the specified array of 32-bit integers.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- values
- Type: System.Int32[]
An array of integers containing the values to copy, where each integer represents 32 consecutive bits.
| Exception | Condition |
|---|---|
| ArgumentNullException | values is null. |
| ArgumentException | The length of values is greater than MaxValue |
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.
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.