using System; namespace xCommons.Helpers { public partial class XDateHelper { /// /// retrieve utc now timestam unix like representation ... /// /// public static long UtcNowTimespan () { return DateTimeOffset.UtcNow.ToUnixTimeMilliseconds (); } } }