System.Reflection.Emit.__ExceptionInstance.Equals C# (CSharp) Метод

Equals() публичный Метод

public Equals ( Object obj ) : bool
obj Object
Результат bool
        public override bool Equals(Object obj)
        {
            if (obj!=null && (obj is __ExceptionInstance)) {
                __ExceptionInstance that = (__ExceptionInstance) obj;
                return that.m_exceptionClass == m_exceptionClass &&
                    that.m_startAddress == m_startAddress && that.m_endAddress == m_endAddress &&
                    that.m_filterAddress == m_filterAddress &&
                    that.m_handleAddress == m_handleAddress && that.m_handleEndAddress == m_handleEndAddress;
            }
            else
                return false;
        }