I am using the DateTime.ToFileTime and FromFileTime methods to store and retrieve timestamps in a database. The mininum windows file time is midnight, Jan 1, 1601. Is there a constant similar to DateTime.MinValue, that describes this value?

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

No, but it is simple to create your own:

    public static readonly DateTime MinFileTime = DateTime.FromFileTimeUtc(0);
link|improve this answer
ah yes,of course ;-) – Dabblernl Jan 29 '10 at 22:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.