 | BitCollection Constructor (Int32, Boolean, Int32) |
[This is preliminary documentation and is subject to change.]
Constructs a new instance of the
BitCollection class with the specified initial values.
Namespace:
Condensed
Assembly:
Condensed (in Condensed.dll) Version: 0.1.0.0 (0.1.0.0)
Syntaxpublic BitCollection(
int count,
bool defaultValue,
int capacityInBits
)
Public Sub New (
count As Integer,
defaultValue As Boolean,
capacityInBits As Integer
)
public:
BitCollection(
int count,
bool defaultValue,
int capacityInBits
)
new :
count : int *
defaultValue : bool *
capacityInBits : int -> BitCollectionParameters
- count
- Type: SystemInt32
The number of bit values in the new BitCollection. - defaultValue
- Type: SystemBoolean
The Boolean value to assign to each bit. - capacityInBits
- Type: SystemInt32
The number of elements that the new collection can initially store.
See Also