I am able to get date and time using:
DateTime now = DateTime.Now;
How can I get the current date and time separately in the DateTime forma
You can use DateTime.Now.ToShortDateString() like so:
DateTime.Now.ToShortDateString()
var test = $"Date of this report: {DateTime.Now.ToShortDateString()}";