20
如何使用ToString()格式化可为空的DateTime?
如何将可为空的DateTime dt2转换为格式化的字符串? DateTime dt = DateTime.Now; Console.WriteLine(dt.ToString("yyyy-MM-dd hh:mm:ss")); //works DateTime? dt2 = DateTime.Now; Console.WriteLine(dt2.ToString("yyyy-MM-dd hh:mm:ss")); //gives following error: 方法ToString不会重载一个参数
226
c#
datetime
formatting
nullable