DebugAndTrace.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  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 Blanki_ekzamena
  8. {
  9. internal class DebugAndTrace
  10. {
  11. public static string ima;
  12. public static string fio;
  13. public static string oth;
  14. public static string dol;
  15. public static void login(string Login)
  16. {
  17. Trace.Listeners.Add(new TextWriterTraceListener("Debug.txt"));
  18. Debug.Indent();
  19. Trace.Indent();
  20. Trace.WriteLine("\n");
  21. DateTime dt = DateTime.Now;
  22. Debug.WriteLine("Дата: {0}", dt);
  23. Debug.WriteLine("Debug");
  24. Trace.WriteLine("Trace");
  25. if (Login != null)
  26. {
  27. Debug.WriteLine("Вход в программу произошёл по должности: "+dol+" под ФИО: "+ ima +" "+fio+" "+oth+" с логином: " + Login);
  28. }
  29. Trace.Flush();
  30. }
  31. }
  32. }