Debug.cs 1.4 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. using System.IO;
  8. namespace Examen31P_LebedevaAF
  9. {
  10. internal class Debugg
  11. {
  12. public static void DebTr()
  13. {
  14. Trace.Listeners.Add(new TextWriterTraceListener("Debug.txt"));
  15. Debug.Indent();
  16. Trace.Indent();
  17. Debug.WriteLine("Программа запущена: {0}", DateTime.Today);
  18. Trace.WriteLine("Программа запущена: {0}", Convert.ToString( DateTime.Today));
  19. Debug.Flush();
  20. //Debug.Indent();
  21. //Trace.Listeners.Add(x);
  22. //Debug.WriteLine(st);
  23. //Debug.Flush();
  24. //x.Close();
  25. //string location = Environment.CurrentDirectory;
  26. //location = location.Remove(location.Length - 6, 6);
  27. //location = location.Insert(location.Length, "Diagnostic.txt");
  28. //TextWriterTraceListener tr = new TextWriterTraceListener(File.AppendText(location));
  29. //Debug.Listeners.Add(tr);
  30. //Debug.WriteLine(s);
  31. //Debug.Flush();
  32. //tr.Close();
  33. //TextWriterTraceListener x = new TextWriterTraceListener(File.AppendText("diagnostic.txt"));
  34. //Trace.Listeners.Add(x);
  35. //Debug.WriteLine(st);
  36. //Debug.Flush();
  37. //x.Close();
  38. }
  39. }
  40. }