System::Collections::Generic::DictionaryPtr klass
DictionaryPtr class
Dictionary pointer class with operator overloads. 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 DictionaryPtr : public System::SmartPtr<Dictionary<T, V>>
| Parameter | Beskrivning |
|---|
| T | Nyckeltyp. |
| V | Värdetyp. |
Metoder
| Metod | Beskrivning |
|---|
| DictionaryPtr() | Initierar nullpekare. |
| DictionaryPtr(const SharedPtr<Dictionary<T, V>>&) | Konverterar pekartyp. |
| operator[](const X&) const | Åtkomstoperator för att arbeta med konvertering av nyckeltyp. |
| operator[](const T&) const | Åtkomstoperator. |
Se även