BitVector32 Constructors

Definition

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)

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)

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.

Applies to