Deb.cs 686 B

1234567891011121314151617181920212223242526
  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 exem_var3
  9. {
  10. public class Deb
  11. {
  12. /// <summary>
  13. /// Строка записи в файл diagW.txt
  14. /// </summary>
  15. /// <param name="str">Строка записи в файл</param>
  16. public static void diagW(string str)
  17. {
  18. TextWriterTraceListener x = new TextWriterTraceListener(File.AppendText("diagW.txt"));
  19. Trace.Listeners.Add(x);
  20. Debug.WriteLine(str);
  21. Debug.Flush();
  22. x.Close();
  23. }
  24. }
  25. }