This article describes the method of C# implementing the output current system time in the console. Share it for your reference. The specific implementation method is as follows:
//C#Implemented small console program: Dynamically output the current timeusing System; using ; using ; using ; using ; namespace ConsoleApplication1 { class Program { /// <summary> /// Console dynamic output time applet /// </summary> /// <param name="args"></param> static void Main(string[] args) { = "Console Dynamic Display Time Mini Program"; = 3;//Console height = 50;//Console Width while(true)//A dead loop { ("The current system time is:{0}",); //Current system time (1000); //The current main thread sleeps (); //Clear the screen } } } }
I hope this article will be helpful to everyone's C# programming.