?
=?ISO-8859-1?Q?Bernard_Bour=E9e?=
I have a class named VALEUR which contains some properties like KEY and NAME
I have built a hashtable named VALEURS with a code like:
Valeurs.Add(Valeur.Key, Valeur)
in a loop I want to have access to the properties of each Valeur
I have tried
Dim Valeur as DictionaryEntry
For Each Valeur in Valeurs
na = Valeur.Name
next
But it does not work
Thanks for your help
Bernard
I have built a hashtable named VALEURS with a code like:
Valeurs.Add(Valeur.Key, Valeur)
in a loop I want to have access to the properties of each Valeur
I have tried
Dim Valeur as DictionaryEntry
For Each Valeur in Valeurs
na = Valeur.Name
next
But it does not work
Thanks for your help
Bernard