AnujBank.AccountId.Equals C# (CSharp) Метод

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

public Equals ( AccountId other ) : bool
other AccountId
Результат bool
        public bool Equals(AccountId other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            return other.Id == Id;
        }

Same methods

AccountId::Equals ( object obj ) : bool