using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Diagnostics; namespace Blanki_ekzamena { internal class DebugAndTrace { public static string ima; public static string fio; public static string oth; public static string dol; public static void login(string Login) { Trace.Listeners.Add(new TextWriterTraceListener("Debug.txt")); Debug.Indent(); Trace.Indent(); Trace.WriteLine("\n"); DateTime dt = DateTime.Now; Debug.WriteLine("Дата: {0}", dt); Debug.WriteLine("Debug"); Trace.WriteLine("Trace"); if (Login != null) { Debug.WriteLine("Вход в программу произошёл по должности: "+dol+" под ФИО: "+ ima +" "+fio+" "+oth+" с логином: " + Login); } Trace.Flush(); } } }