Ejemplo n.º 1
0
 public void Clear()
 {
     if (partitioned)
     {
         for (int p = 0; p < noParts; p++)
         {
             pmers[p].Clear();
         }
     }
     else
     {
         mers.Clear();
     }
 }
Ejemplo n.º 2
0
 public void Clear()
 {
     if (partitioned)
     {
         for (int i = 0; i < noOfPartitions; i++)
         {
             dictionaryPartitions[i].Clear();
         }
     }
     else
     {
         dictionary.Clear();
     }
 }