Result.cs 630 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Diagnostics;
  5. using System.IO;
  6. namespace exzem1
  7. {
  8. class Result
  9. {
  10. /// <summary>
  11. /// запись строки в файл result
  12. /// </summary>
  13. /// <param name="res">Строка для записи в файл</param>
  14. public static void resW(string res)
  15. {
  16. TextWriterTraceListener x = new TextWriterTraceListener(File.AppendText("res.txt"));
  17. Trace.Listeners.Add(x);
  18. Debug.WriteLine(res);
  19. Debug.Flush();
  20. x.Close();
  21. }
  22. }
  23. }