var file = new System.IO.StreamWriter(this.textBoxOutputDir.Text + "\\log.txt", true);
file.WriteLine(OutText);
file.Close();
C# пример записи в файл
Добавить комментарий
var file = new System.IO.StreamWriter(this.textBoxOutputDir.Text + "\\log.txt", true);
file.WriteLine(OutText);
file.Close();