The next generation of the Teknik Services. Written in ASP.NET.
https://www.teknik.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
380 B
17 lines
380 B
using System; |
|
|
|
namespace Teknik.Utilities |
|
{ |
|
public static class DateTimeHelper |
|
{ |
|
public static int GetUnixTimestamp() |
|
{ |
|
return DateTime.UtcNow.GetUnixTimestamp(); |
|
} |
|
|
|
public static int GetUnixTimestamp(this DateTime dt) |
|
{ |
|
return (int)(dt.Subtract(new DateTime(1970, 1, 1))).TotalSeconds; |
|
} |
|
} |
|
}
|
|
|