DebugandTrace.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Diagnostics;
  7. using System.IO;
  8. namespace MathModTasks
  9. {
  10. internal class DebugandTrace
  11. {
  12. public static void CreeateTXT()
  13. {
  14. Trace.Listeners.Add(new TextWriterTraceListener("Debug.txt"));
  15. Debug.Indent();
  16. Trace.Indent();
  17. Debug.WriteLine("Программа запустилась");
  18. Debug.WriteLine("Дата: {0}", DateTime.Today);
  19. }
  20. public static void OTV(Path savingPath)
  21. {
  22. try
  23. {
  24. Debug.WriteLine("Найденный путь имеет вид:");
  25. Debug.WriteLine(savingPath.path);
  26. Debug.WriteLine("Его длина составляет: " + savingPath.length);
  27. Trace.Flush();
  28. }
  29. catch
  30. {
  31. Console.WriteLine("Не удалось вывести в консоль!");
  32. Console.ReadKey();
  33. Environment.Exit(0);
  34. }
  35. }
  36. }
  37. }