从刻度到日期的格式

时间:2009-07-15 04:26:43

标签: c#

我需要将一些带有时间戳的日志传输到XML文档中。我希望时间戳更具体,例如“2009年7月14日10:18:04 pm”

我打算使用以下内容:

DateTime logDate = DateTime.Parse(logText);
logDate.ToString("MMM dd yyyy hh:mm:ss tt");

我认为这样就可以,因为DateTime.Now.Ticks是你如何得到滴答声。然而,它返回它不是一个正确的DateTime格式。在设置logDate期间。

我确信有一个简单的解决方案,但我无法遇到它。

2 个答案:

答案 0 :(得分:20)

如果logText是字符串,您可以将其转换为long(Int64)并使用this constructor

DateTime date = new DateTime(long.Parse(logText));

答案 1 :(得分:1)

假设'logText'是刻度线,请尝试:

DateTime logDate = new DateTime(logText);