Get System Up Time MS - CSharp System

CSharp examples for System:DateTime Calculate

Description

Get System Up Time MS

Demo Code


using System.Threading.Tasks;
using System.Text;
using System.Linq;
using System.Collections.Generic;
using System;//from w  ww. ja  va 2  s . c om

public class Main{
        public static uint GetUpTimeMS()
        {
            return (uint)Environment.TickCount;
        }
}

Related Tutorials