Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Convert DateTime to long and also the other way around

Tags:

c#

.net

datetime

People also ask

How do I convert DateTime to long?

The DateTime. ToLongDateString() method in C# is used to convert the value of the current DateTime object to its equivalent long date string representation.

How do I convert DateTime to OffsetDateTime?

Converting Date to OffsetDateTimeDate date = new Date(); OffsetDateTime offsetDateTime = date. toInstant() . atOffset(ZoneOffset. UTC);

What does DateTimeOffset mean?

The DateTimeOffset structure represents a date and time value, together with an offset that indicates how much that value differs from UTC. Thus, the value always unambiguously identifies a single point in time.


To long from DateTime:

long DateTime.Ticks

To DateTime from long:

new DateTime(long)


use the pair long t = now.Ticks and DateTime Today = new DateTime(t)


From long to DateTime: new DateTime(long ticks)

From DateTime to long: DateTime.Ticks


Since you're using ToFileTime, you'll want to use FromFileTime to go the other way. But note:

Ordinarily, the FromFileTime method restores a DateTime value that was saved by the ToFileTime method. However, the two values may differ under the following conditions:

If the serialization and deserialization of the DateTime value occur in different time zones. For example, if a DateTime value with a time of 12:30 P.M. in the U.S. Eastern Time zone is serialized, and then deserialized in the U.S. Pacific Time zone, the original value of 12:30 P.M. is adjusted to 9:30 A.M. to reflect the difference between the two time zones.

If the DateTime value that is serialized represents an invalid time in the local time zone. In this case, the ToFileTime method adjusts the restored DateTime value so that it represents a valid time in the local time zone.

If you don't care which long representation of a DateTime is stored, you can use Ticks as others have suggested (Ticks is probably preferable, depending on your requirements, since the value returned by ToFileTime seems to be in the context of the Windows filesystem API).


There are several possibilities (note that the those long values aren't the same as the Unix epoch.

For your example (to reverse ToFileTime()) just use DateTime.FromFileTime(t).


There is a DateTime constructor that takes a long.

DateTime today = new DateTime(t); // where t represents long format of dateTime 

   long dateTime = DateTime.Now.Ticks;
   Console.WriteLine(dateTime);
   Console.WriteLine(new DateTime(dateTime));
   Console.ReadKey();