Pandora.Registration.Equals C# (CSharp) Method

Equals() private method

private Equals ( Registration other ) : bool
other Registration
return 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