代码:
string filepath = @"D:\log.txt";
using (StreamWriter streamWriter = File.AppendText(filepath))
{
streamWriter.WriteLine(DateTime.MinValue);
streamWriter.WriteLine(DateTime.MaxValue);
}
服务项目和winform项目使用相同的代码,但结果不同:
服务项目:0001/1/1 0:00:00,9999/12/31 23:59:59
winform项目:0001-1-1 0:00:00,9999-12-31 23:59:59
我的操作系统是win7 x64,操作系统的时间就像2018-1-30