Example #1
0
        public static void Main(string[] args)
        {
            var stopWatch = new StopWatch();

            stopWatch.Start();
            stopWatch.Stop();
            Console.WriteLine("The total elapsed time is: " + stopWatch.GetDifference());
        }