LibHac/Net/Util.cs

10 lines
202 B
C#
Raw Normal View History

2018-07-31 21:14:18 +02:00
using System;
namespace Net
{
public static class Util
{
public static long ToUnixTime(this DateTime inputTime) => (long)(inputTime - new DateTime(1970, 1, 1)).TotalSeconds;
}
}