System::Collections::Generic::HashSetPtr class

HashSetPtr class

Pointer to keep HashSet references. 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.

template<typename T>class HashSetPtr : public System::SmartPtr<HashSet<T>>

Methods

MethodDescription
HashSetPtr()Null pointer constructor.
HashSetPtr(const SharedPtr<HashSet<T>>&)Copy constructor.

See Also