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

GetHashCode() public méthode

Returns a hash code for this instance.
public GetHashCode ( ) : int
Résultat int
        public override int GetHashCode()
        {
            // ReSharper disable once NonReadonlyMemberInGetHashCode - Name cannot be readonly because it is set implicitly by Automapper
            return Name?.GetHashCode() ?? 0;
        }