Ejemplo n.º 1
0
        public static DateTime ToDateTime(string timeId)
        {
            var reader = new Base64Reader(timeId, 8);
            var tick   = reader.ReadInt64();

            return(new DateTime(Math.Abs(tick)));
        }
Ejemplo n.º 2
0
 public static DateTime ToDateTime(string timeId)
 {
     var reader = new Base64Reader(timeId, 8);
     var tick = reader.ReadInt64();
     return new DateTime(Math.Abs(tick));
 }