此代码的输出
string fileDateTime = "StepsGA-" + DateTime.Now.ToString("dd-MM-yyyy-HH-mm-ss") + ".txt";
string fname = System.IO.Path.Combine(System.Environment.CurrentDirectory, fileDateTime);
File.WriteAllText(fname, txtSteps.Text);
不会保留应有的换行符。文本框的所有内容都打印在一条水平长线上!我哪里出错了?谢谢 !