 | BitCollectionCopyTo Method |
[This is preliminary documentation and is subject to change.]
Copies the entire BitCollection to a compatible one-dimensional array of bools, starting at the specified index of the target array.
Namespace:
Condensed
Assembly:
Condensed (in Condensed.dll) Version: 0.1.0.0 (0.1.0.0)
Syntaxpublic void CopyTo(
bool[] array,
int arrayIndex
)
Public Sub CopyTo (
array As Boolean(),
arrayIndex As Integer
)
public:
virtual void CopyTo(
array<bool>^ array,
int arrayIndex
) sealed
abstract CopyTo :
array : bool[] *
arrayIndex : int -> unit
override CopyTo :
array : bool[] *
arrayIndex : int -> unit Parameters
- array
- Type: SystemBoolean
The one-dimensional array that is the destination of the elements copied from the BitCollection. - arrayIndex
- Type: SystemInt32
The zero-based index in the destination array argument at which copying begins.
Implements
ICollectionTCopyTo(T, Int32)
See Also