IDebugGenericParamField::GetIndex
Récupère l’index de ce paramètre générique.
Syntaxe
Paramètres
pIndex
[out] Valeur d’index de ce paramètre générique.
Valeur de retour
En cas de réussite, retourne S_OK
, sinon, retourne un code d'erreur.
Notes
Par exemple, pour Dictionary(K,V), K est index 0, V est index 1.
Exemple
L’exemple suivant montre comment implémenter cette méthode pour un objet CDebugGenericParamFieldType qui expose l’interface IDebugGenericParamField .
HRESULT CDebugGenericParamFieldType::GetIndex(DWORD* pIndex)
{
HRESULT hr = S_OK;
METHOD_ENTRY( CDebugGenericParamFieldType::GetIndex );
IfFalseGo(pIndex, E_INVALIDARG );
IfFailGo( this->LoadProps() );
*pIndex = m_index;
Error:
METHOD_EXIT( CDebugGenericParamFieldType::GetIndex, hr );
return hr;
}