SevenDigital.Mapper.Domain.Mapping.Equals C# (CSharp) Метод

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

public Equals ( Mapping other ) : bool
other Mapping
Результат bool
        public bool Equals(Mapping other)
        {
            if(ReferenceEquals(null, other))
            {
                return false;
            }
            if(ReferenceEquals(this, other))
            {
                return true;
            }
            return Equals(other.SevenDigital, SevenDigital) && Equals(other.MusicBrainz, MusicBrainz);
        }

Same methods

Mapping::Equals ( object obj ) : bool