1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Diagnostics;
- using System.IO;
- namespace exem_var3
- {
- public class Deb
- {
- /// <summary>
- /// Строка записи в файл diagW.txt
- /// </summary>
- /// <param name="str">Строка записи в файл</param>
- public static void diagW(string str)
- {
- TextWriterTraceListener x = new TextWriterTraceListener(File.AppendText("diagW.txt"));
- Trace.Listeners.Add(x);
- Debug.WriteLine(str);
- Debug.Flush();
- x.Close();
- }
- }
- }
|