debugAndTrace.cs 1.1 KB

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