string path = @"D:\a.txt";
System.IO.StreamWriter swOut = new System.IO.StreamWriter(path, false, System.Text.Encoding.Default);
swOut.WriteLine(strA);
swOut.Flush();
swOut.Close();
System.IO.StreamWriter
时间: 2024-10-14 07:05:28
string path = @"D:\a.txt";
System.IO.StreamWriter swOut = new System.IO.StreamWriter(path, false, System.Text.Encoding.Default);
swOut.WriteLine(strA);
swOut.Flush();
swOut.Close();
System.IO.StreamWriter