debugAndTrace.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. namespace Дол_Восток
  8. {
  9. internal class debugAndTrace
  10. {
  11. public static string[] info = null;
  12. public static void writeInFile(string action)
  13. {
  14. Debug.WriteLine("");
  15. Debug.WriteLine($"Действие: {action} ({DateTime.Now})");
  16. Trace.Flush();
  17. }
  18. public static void onStart()
  19. {
  20. Trace.Listeners.Add(new TextWriterTraceListener("debug.txt"));
  21. }
  22. public static void writeInFile(string action, string[] data)
  23. {
  24. Debug.WriteLine("");
  25. Debug.WriteLine($"Действие: {action} ({DateTime.Now})");
  26. Debug.WriteLine("Используемые данные:");
  27. for (int i = 0; i < data.Length; i++)
  28. {
  29. if (i != data.Length - 1)
  30. {
  31. Debug.WriteLine($"\t{data[i]};");
  32. }
  33. else
  34. {
  35. Debug.WriteLine($"\t{data[i]}.");
  36. }
  37. }
  38. Trace.Flush();
  39. }
  40. }
  41. }