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
To display a TimeSpan formatted with local culture, simply add it to a date like DateTime.Today. Something like this:
(DateTime.Today + timeSpan).ToString();
Since your value really doesn't represent a date, you're better off storing it as a TimeSpan until the time comes to display it.