Classe System::Collections::Generic::DictionaryPtr
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<T0>
| Parametro | Descrizione |
|---|
| T | Tipo di chiave. |
| V | Tipo valore. |
Metodi
| Metodo | Descrizione |
|---|
| DictionaryPtr() | Inizializza un puntatore nullo. |
| DictionaryPtr(const SharedPtr<Dictionary<T, V>>&) | Converte il tipo di puntatore. |
| operator[](const X&) const | Operatore di accesso per lavorare con la conversione del tipo di chiave. |
| operator[](const T&) const | Operatore di accesso. |
Vedi anche