[Opgelost] Printing out the current date and time in in C#

  

3
Onderwerp starter

How to print in C# the current date and time and print it out in console application?

1 antwoord
2

After you write Console.WriteLine and open the brackets - you can intuitively start typing Date and Visual Basics will give you some suggestions - including the method for finding out the current date and time...

Hier is de code:

using System;
 
class CurrentDateTime
{
    static void Main()
    {
        Console.WriteLine(DateTime.Now);
    }
}
Deel: