예제 #1
0
        public virtual System.DateTime ReadDate(string label)
        {
            long position = io.GetCurrentPosition();

            System.DateTime date = byteArrayConverter.ByteArrayToDate(ReadDateBytes());
            if (NeoDatis.Odb.OdbConfiguration.IsDebugEnabled(LogId) && canLog)
            {
                NeoDatis.Tool.DLogger.Debug("Reading date '" + date + "' at " + position + (label
                                                                                            != null ? " : " + label : string.Empty));
            }
            return(date);
        }