如何使用ToString()格式化可为空的DateTime?
如何将可为空的DateTime 转换为格式化的字符串?
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的重载没有接受一个参数
回答:
Console.WriteLine(dt2 != null ? dt2.Value.ToString("yyyy-MM-dd hh:mm:ss") : "n/a");
编辑:如其他注释所述,请检查是否有非空值。
更新:按照注释中的建议,扩展方法:
public static string ToString(this DateTime? dt, string format) => dt == null ? "n/a" : ((DateTime)dt).ToString(format);
从C#6开始,您可以使用空条件运算符来进一步简化代码。如果the DateTime?
为null
,则下面的表达式将返回null。
dt2?.ToString("yyyy-MM-dd hh:mm:ss")
以上是 如何使用ToString()格式化可为空的DateTime? 的全部内容, 来源链接: utcz.com/qa/418499.html