BudgetAnalyser.Engine.BankAccount.Account.Equals C# (CSharp) Méthode

Equals() protected méthode

Returns true if the Account.Name is equal to the other Account.Name
protected Equals ( [ other ) : bool
other [
Résultat bool
        protected bool Equals([CanBeNull] Account other)
        {
            if (other == null)
            {
                return false;
            }
            return string.Equals(Name, other.Name);
        }
    }

Same methods

Account::Equals ( object obj ) : bool