Date and time continuous Learn programming C#

Lesson:

Additional Libraries


Exercise:

Date and time continuous


Objetive:

Create a program that shows the current time in the top-right corner of the screen with the format:

12:52:03

The program should pause for one second and then display the time again in the same location.


Code:

using System;
using System.Threading;
class DateAndTimeContinuos
{
    static void Main()
    {
        while (true)
        {
            string time = DateTime.Now.ToLongTimeString();

            Console.SetCursorPosition(72, 1);
            Console.Write(time);

            Thread.Sleep(1000);
        }
    }
}

Juan A. Ripoll - Systems Tutorials and Programming Courses ©  All rights reserved.  Legal Conditions.