ミリ秒単位で時間を取得する必要があるプログラムを作成しています。時間が経つにつれて、私は決してそれ自体と等しくなることのない数を意味し、1秒前よりも常に1000の数だけ大きくなります。 DateTime.Now
をTimeSpan
に変換して、そこからTotalMilliseconds
を取得しようとしましたが、完全に正確ではないと聞きました。
これを行う簡単な方法はありますか?
long milliseconds = DateTime.Now.Ticks / TimeSpan.TicksPerMillisecond;
これは、実際にさまざまなUnix変換メソッドが DateTimeOffset
クラス(.NET Framework 4.6 + 、. NET Standard 1.3+)で実装される方法です。
long milliseconds = DateTimeOffset.Now.ToUnixTimeMilliseconds();
DateTime.Ticks
プロパティは、日付と時刻を表すティックの数を取得します。
10,000ティックはミリ秒(1秒あたり10,000,000ティック)です。
QueryPerformanceCounter
ネイティブメソッドを試すことができます。詳細については、 http://www.pinvoke.net/default.aspx/kernel32/QueryPerformanceCounter.html を参照してください。これはStopwatch
クラスが使用するものです。
詳細については、「 。NET/C#でティック精度のタイムスタンプを取得する方法 」を参照してください。
Stopwatch.GetTimestamp()
は、このメソッドへのアクセスを提供します。
public static long GetTimestamp() {
if(IsHighResolution) {
long timestamp = 0;
SafeNativeMethods.QueryPerformanceCounter(out timestamp);
return timestamp;
}
else {
return DateTime.UtcNow.Ticks;
}
}
私は次のクラスを使用します。私は一度インターネットでそれを見つけ、最高だと仮定しましたNOW()。
/// <summary>Class to get current timestamp with enough precision</summary>
static class CurrentMillis
{
private static readonly DateTime Jan1St1970 = new DateTime (1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
/// <summary>Get extra long current timestamp</summary>
public static long Millis { get { return (long)((DateTime.UtcNow - Jan1St1970).TotalMilliseconds); } }
}
ソースが不明です。
DateTime.Now.TimeOfDay.TotalMilliseconds(現在の日)を使用しましたが、それがあなたにも役立つことを願っています。
System.DateTime.Now.ToUniversalTime()
を使用します。これにより、読み取りは既知の参照ベースのミリ秒形式になり、曜日の変更などが完全になくなります。