BitVector32 Constructors
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.
Initializes a new instance of the BitVector32 structure.
Overloads
BitVector32(BitVector32) |
Initializes a new instance of the BitVector32 structure containing the data represented in an existing BitVector32 structure. |
BitVector32(Int32) |
Initializes a new instance of the BitVector32 structure containing the data represented in an integer. |
BitVector32(BitVector32)
- Source:
- BitVector32.cs
- Source:
- BitVector32.cs
- Source:
- BitVector32.cs
Initializes a new instance of the BitVector32 structure containing the data represented in an existing BitVector32 structure.
public:
BitVector32(System::Collections::Specialized::BitVector32 value);
public BitVector32 (System.Collections.Specialized.BitVector32 value);
new System.Collections.Specialized.BitVector32 : System.Collections.Specialized.BitVector32 -> System.Collections.Specialized.BitVector32
Public Sub New (value As BitVector32)
Parameters
- value
- BitVector32
A BitVector32 structure that contains the data to copy.
Remarks
This constructor is an O(1) operation.
Applies to
BitVector32(Int32)
- Source:
- BitVector32.cs
- Source:
- BitVector32.cs
- Source:
- BitVector32.cs
Initializes a new instance of the BitVector32 structure containing the data represented in an integer.
public:
BitVector32(int data);
public BitVector32 (int data);
new System.Collections.Specialized.BitVector32 : int -> System.Collections.Specialized.BitVector32
Public Sub New (data As Integer)
Parameters
- data
- Int32
An integer representing the data of the new BitVector32.
Remarks
This constructor is an O(1) operation.