static void Main(string[] args) { //Test pour Github try { TestException test = new TestException(); test.RetourException(); // Afficher("Coucou"); //Demo(); } //catch (FormatException) //{ // Console.WriteLine("Y a un problème de format!!"); //} catch (Exception e) { // StreamWriter log = File.OpenWrite(cheminDuLog); Console.WriteLine("Exception : {0}\n{1}", e.StackTrace, e.Message); } finally { } Console.ReadKey(); }