Exemplo n.º 1
0
 static void PrintID(Hashtable hashTable)
 {
     foreach (int key in hashTable.Keys)
     {
         CStudent castData = (CStudent)hashTable[key];
         castData.PrintID();
     }
 }