I\'m using a DateTime in C# to display times. What date portion does everyone use when constructing a time?
E.g. the following is not valid because ther
Personally I'd create a custom Time struct that contains a DateTime instance, and which has similar properties, constructors etc. but doesn't expose days/months/etc. Just make all your public accessors pass through to the contained instance. Then you can simply have the epoch as a private static readonly DateTime field and it doesn't matter what value you choose as it's all neatly contained within your custom struct. In the rest of your code can simply write:
var time = new Time(16, 47, 58);