c# datetime unix timestamp code example
Example 1: unix time c#
Int32 unixTimestamp = (Int32)(DateTime.UtcNow.Subtract(new DateTime(1970, 1, 1))).TotalSeconds;
Example 2: c# unix timestamp
var unixTimestamp = DateTimeOffset.UtcNow.ToUnixTimeSeconds();