using System; using System.Collections.Generic; using System.Text; using System.Diagnostics; using System.IO; namespace exzem1 { class Result { /// /// запись строки в файл result /// /// Строка для записи в файл public static void resW(string res) { TextWriterTraceListener x = new TextWriterTraceListener(File.AppendText("res.txt")); Trace.Listeners.Add(x); Debug.WriteLine(res); Debug.Flush(); x.Close(); } } }