Is there a constant describing the minimal Windows FileTime Value in .Net?
See the question and my original answer on StackOverflowFor people like me searching for the same "min file value" for a DateTimeOffset, the definition would be:
public static readonly DateTimeOffset MinFileTimeOffset = new DateTimeOffset(MinFileTime);
with MinFileTime defined as in Hans' answer..
PS: DateTimeOffset doesn't have a FromFileTimeUtc method.