System::Collections::Generic::SortedDictionaryPtr class

SortedDictionaryPtr class

Sorted dictionary pointer with access operators. 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,typename V>class SortedDictionaryPtr : public System::SmartPtr<SortedDictionary<T, V>>

Methods

MethodDescription
operator[](const T&) constAccessor function.
SortedDictionaryPtr()Constructs null pointer.
SortedDictionaryPtr(const SharedPtr<SortedDictionary<T, V>>&)Constructs pointer to specified sorted dictionary.

See Also