Bonjour a tous

J'ai fait une hashtable pour ne pas avoir de doublons avec
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
 
Dim DoubleOut As New Hashtable()
For i As Integer = 0 To Comb - 1
If DoubleOut.ContainsKey(Tableau.Item(i).ToString) = False Then
DoubleOut.Add(Tableau.Item(i).ToString, "")
End If
Next
J'arrive bien a remplir mon HashTable mais arpes comment je fait pour les lires ?


Merci d'avance