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