System::Collections::BitArrayPtr class

BitArrayPtr class

Pointer to BitArray. This type is a pointer to manage other object’s deletion. It should be allocated on stack and passed to functions either by value or by const reference.

class BitArrayPtr : public System::SmartPtr<BitArray>

Methods

MethodDescription
BitArrayPtr()Initializes null pointer.
BitArrayPtr(const SharedPtr<BitArray>&)Conversion constructor.
IsNull() constChecks if specific value is null.
operator[](int) constBit accessor.

See Also