codice:
Hashtable myHash = new Hashtable();
myHash.Add("a","alessio");
myHash.Add("b","barbara");
myHash.Add("c","carlo");
myHash.Add("d","daniela");
myHash.Add("e","elena");
myHash.Add("f","fabrizio");
							
IEnumerator ie = myHash.GetEnumerator();
while(ie.MoveNext())
{
      System.Windows.Forms.MessageBox.Show(ie.Key + ie.Value);	
}
l'errore che mi da' è: 'System.Collections.IEnumerator' does not contain a
definition for 'Key', tanto che l'intellisense non mi da i campo key e value
nel menu a tendina