16,721
社区成员




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();
}