Pandora.Registration.Equals C# (CSharp) Метод

Equals() приватный Метод

private Equals ( Registration other ) : bool
other Registration
Результат bool
        private bool Equals(Registration other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            return other.Guid.Equals(Guid);
        }

Same methods

Registration::Equals ( object obj ) : bool