AnujBank.AccountId.Equals C# (CSharp) Method

Equals() public method

public Equals ( AccountId other ) : bool
other AccountId
return 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