Skip to content

Instantly share code, notes, and snippets.

@ramonsmits
Created July 7, 2017 14:41
Show Gist options
  • Save ramonsmits/c4148295f4e5886eff7489983e7ce2bf to your computer and use it in GitHub Desktop.
Save ramonsmits/c4148295f4e5886eff7489983e7ce2bf to your computer and use it in GitHub Desktop.
Get Windows uptime with c#
var uptimeInSeconds = Stopwatch.GetTimestamp() / Stopwatch.Frequency;
var uptime = TimeSpan.FromSeconds(uptimeInSeconds);
Console.WriteLine(uptime);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment