コード例 #1
0
        public static DateTime?GetDate(this IGameDatabase db, string key)
        {
            if (!db.ContainsKey(key))
            {
                return(null);
            }

            var l = db.GetLong(key);

            if (l == -1)
            {
                return(null);
            }

            var d = DateTime.FromBinary(l);

            return(d);
        }