简体   繁体   中英

C# convert date to unix timestamp

I have this date format 16 nov 02:12 I want convert it in unix time stamp but thats look to complex to me. I hope there is simple way to do that?

Please try this code:

   public static double DateTimeToUnixTimestamp(DateTime dateTime)

    {
       return (TimeZoneInfo.ConvertTimeToUtc(dateTime) - new DateTime(1970, 1, 1)).TotalSeconds;
    }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM