public bool Equals()

in EsentInterop/jet_dbinfomisc.cs [962:1012]


        public bool Equals(JET_DBINFOMISC other)
        {
            if (null == other)
            {
                return false;
            }

            bool notYetPublishedEquals = true;
            this.NotYetPublishedEquals(other, ref notYetPublishedEquals);

            return notYetPublishedEquals
                   && this._ulVersion == other._ulVersion
                   && this._ulUpdate == other._ulUpdate
                   && this._signDb == other._signDb
                   && this._dbstate == other._dbstate
                   && this._lgposConsistent == other._lgposConsistent
                   && this._logtimeConsistent == other._logtimeConsistent
                   && this._logtimeAttach == other._logtimeAttach
                   && this._lgposAttach == other._lgposAttach
                   && this._logtimeDetach == other._logtimeDetach
                   && this._lgposDetach == other._lgposDetach
                   && this._signLog == other._signLog
                   && this._bkinfoFullPrev == other._bkinfoFullPrev
                   && this._bkinfoIncPrev == other._bkinfoIncPrev
                   && this._bkinfoFullCur == other._bkinfoFullCur
                   && this._fShadowingDisabled == other._fShadowingDisabled
                   && this._fUpgradeDb == other._fUpgradeDb
                   && this._dwMajorVersion == other._dwMajorVersion
                   && this._dwMinorVersion == other._dwMinorVersion
                   && this._dwBuildNumber == other._dwBuildNumber
                   && this._lSPNumber == other._lSPNumber
                   && this._cbPageSize == other._cbPageSize
                   && this._genMinRequired == other._genMinRequired
                   && this._genMaxRequired == other._genMaxRequired
                   && this._logtimeGenMaxCreate == other._logtimeGenMaxCreate
                   && this._ulRepairCount == other._ulRepairCount
                   && this._logtimeRepair == other._logtimeRepair
                   && this._ulRepairCountOld == other._ulRepairCountOld
                   && this._ulECCFixSuccess == other._ulECCFixSuccess
                   && this._logtimeECCFixSuccess == other._logtimeECCFixSuccess
                   && this._ulECCFixSuccessOld == other._ulECCFixSuccessOld
                   && this._ulECCFixFail == other._ulECCFixFail
                   && this._logtimeECCFixFail == other._logtimeECCFixFail
                   && this._ulECCFixFailOld == other._ulECCFixFailOld
                   && this._ulBadChecksum == other._ulBadChecksum
                   && this._logtimeBadChecksum == other._logtimeBadChecksum
                   && this._ulBadChecksumOld == other._ulBadChecksumOld
                   && this._genCommitted == other._genCommitted
                   && this._bkinfoCopyPrev == other._bkinfoCopyPrev
                   && this._bkinfoDiffPrev == other._bkinfoDiffPrev;
        }