AnujBank.ClientId.Equals C# (CSharp) Méthode

Equals() public méthode

public Equals ( ClientId other ) : bool
other ClientId
Résultat bool
        public bool Equals(ClientId other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            return Equals(other.Id, Id);
        }

Same methods

ClientId::Equals ( object obj ) : bool