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...
Here is the code:
using System;
class CurrentDateTime
{
static void Main()
{
Console.WriteLine(DateTime.Now);
}
}