I am working on a program that requires the date of an event to get returned.
I am looking for a Date, not a DateTime.
Date
DateTime
Is there
There is no Date DataType.
However you can use DateTime.Date to get just the Date.
DateTime.Date
E.G.
DateTime date = DateTime.Now.Date;