16,719
社区成员
发帖
与我相关
我的任务
分享static void Main(string[] args)
{
string strDelayRecordPath = @"c:\abc.csv";
string strContents = "ABC";
StreamWriter sw = System.IO.File.CreateText(strDelayRecordPath);
sw.Write(strContents);
sw.WriteLine("");
sw.Flush();
sw.Close();
}