Ejemplo n.º 1
0
 /// <summary>
 /// Functio that clears up SessionData and Setup file with it HashDictionary.
 /// </summary>
 /// <param name="index">Index of the SessionData that has to be cleared out.</param>
 public static void RemoveSessionDataAndRelatedFiles(int index)
 {
     if (index < SDList.Count)
     {
         SetupFileHandler.DeleteSetupFileAndItsHashDictionary(SDList[index].SetupFileName);
         SDList.RemoveAt(index);
     }
 }