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
public class AsOfdates { public string DisplayDate { get; set; } private DateTime TheDate; public DateTime DateValue { get { return TheDate.Date; } set { TheDate = value; } } }