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
{
///
/// Строка записи в файл diagW.txt
///
/// Строка записи в файл
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();
}
}
}