mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
9 lines
202 B
C#
9 lines
202 B
C#
using System;
|
|
|
|
namespace Net
|
|
{
|
|
public static class Util
|
|
{
|
|
public static long ToUnixTime(this DateTime inputTime) => (long)(inputTime - new DateTime(1970, 1, 1)).TotalSeconds;
|
|
}
|
|
}
|