This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| namespace F16Gaming.WoW.AddonPackager.Extensions | |
| { | |
| public static class DateTimeExtensions | |
| { | |
| public static readonly DateTime Epoch = new DateTime(1970, 1, 1, 0, 0, 0, 0); | |
| public static long ToUnixTimestamp(this DateTime time) | |
| { |
NewerOlder