public static void Debug()
 {
     CFormat.Write("Download progress: ");
     for (int i = 0; i <= 100; i++)
     {
         CFormat.DrawProgressBar(i, 100, 10, '■', ConsoleColor.Green, ConsoleColor.DarkGray);
         System.Threading.Thread.Sleep(10);
     }
 }
Example #2
0
 private static void CreateFile()
 {
     try
     {
         CFormat.Print("Création d'un nouveau fichier de configuration.", "XmlManager", DateTime.Now, ConsoleColor.Yellow);
         Config._INSTANCE.ResetDefault();
         SaveXmlConfig();
         return;
     }
     catch (Exception ex)
     {
         CFormat.Print("Impossible de créer un fichier de configuration. Détails : " + ex.Message, "XmlManager", DateTime.Now, ConsoleColor.Yellow);
         CFormat.Write("Appuyez sur une touche pour quitter l'application...");
         Console.ReadKey(true);
         Environment.Exit(0);
     }
 }