Quantcast
Viewing all articles
Browse latest Browse all 10

Get system uptime using C#

string uptime = String.Empty; uptime += (Environment.TickCount / 86400000).ToString() + " days, "; uptime += (Environment.TickCount / 3600000 % 24) + " hours, "; uptime...

Viewing all articles
Browse latest Browse all 10

Trending Articles