如何以毫秒精度准确地构造实际时间的时间戳?
我需要像16.4.2013 9:48:00:123这样的。这可能吗?我有一个应用程序,每秒对值进行10次采样,我需要在图形中显示它们。
如何以毫秒精度准确地构造实际时间的时间戳?
我需要像16.4.2013 9:48:00:123这样的。这可能吗?我有一个应用程序,每秒对值进行10次采样,我需要在图形中显示它们。
当前回答
Pyromancer的答案对我来说似乎很好,但也许你想要:
DateTime.Now.Millisecond
但如果你要比较日期,TimeSpan是最好的选择。
其他回答
这应该可以工作:
DateTime.Now.ToString("hh.mm.ss.ffffff");
如果你不需要显示它,只需要知道时间差,那就不要把它转换成字符串。将其保留为DateTime.Now();
并使用TimeSpan来了解时间间隔之间的差异:
例子
DateTime start;
TimeSpan time;
start = DateTime.Now;
//Do something here
time = DateTime.Now - start;
label1.Text = String.Format("{0}.{1}", time.Seconds, time.Milliseconds.ToString().PadLeft(3, '0'));
如果你仍然想要一个日期而不是像其他答案一样的字符串,只需添加这个扩展方法。
public static DateTime ToMillisecondPrecision(this DateTime d) {
return new DateTime(d.Year, d.Month, d.Day, d.Hour, d.Minute,
d.Second, d.Millisecond, d.Kind);
}
另一个选择是从源DateTime值构造一个新的DateTime实例:
// current date and time
var now = DateTime.Now;
// modified date and time with millisecond accuracy
var msec = new DateTime(now.Year, now.Month, now.Day, now.Hour, now.Minute, now.Second, now.Millisecond, now.Kind);
不需要做任何到字符串和从字符串的转换,而且它的代码也非常容易理解和可读性强。
就我对这个问题的理解,你可以选择:
DateTime dateTime = DateTime.Now;
DateTime dateTimeInMilliseconds = dateTime.AddTicks(-1 * dateTime.Ticks % 10000);
这将切断小于1毫秒的滴答。
我正在寻找一个类似的解决方案,基于这个线程上的建议,我使用以下方法 DateTime.Now。ToString(“MM / dd / yyyy hh: MM: ss.fff”) ,它就像魅力一样。注意:.fff是您希望捕获的精度数字。