AnujBank.Account.Equals C# (CSharp) Method

Equals() public method

public Equals ( Account other ) : bool
other Account
return bool
        public bool Equals(Account other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            return Equals(other.AccountNo, AccountNo) && Equals(other.ClientId, ClientId);
        }

Same methods

Account::Equals ( object obj ) : bool