I\'m using a DateTime in C# to display times. What date portion does everyone use when constructing a time?
DateTime
E.g. the following is not valid because ther
How about DateTime.Now.TimeOfDay, and use the TimeSpan?
DateTime.Now.TimeOfDay
TimeSpan
Re "because that doesn't store times of the day." - well, it does if you think of a TimeSpan as the time since midnight.
A "duration", for example, screams TimeSpan.