Languages
[Edit]
EN

C# / .NET - get current machine time in milliseconds

8 points
Created by:
aaliyah
471

C# / .NET it is possible to take machine time in milliseconds in following way.

Getting milli time with Stopwatch.GetTimestamp method example

public static class TimeUtils
{
	public static long GetMilliseconds()
	{
		double timestamp = Stopwatch.GetTimestamp();
		double milliseconds = 1_000.0 * timestamp / Stopwatch.Frequency;

		return (long)milliseconds;
	}
}

Example:

long t1 = TimeUtils.GetMilliseconds();

Thread.Sleep(1000);

long t2 = TimeUtils.GetMilliseconds();
long dt = t2 - t1;

Console.WriteLine(t2 + " - " + t1 + " = " + dt + " ms");

Output:

197778624 - 197777623 = 1001 ms
Notes: 
  • Stopwatch.GetTimestamp returns time from timer mechanism - system up time.
  • The best application of this time could be measuring how much time took some operations.

References

  1. Stopwatch.GetTimestamp Method - Microsoft Docs
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join