C# Class BudgetAnalyser.Engine.BankAccount.Account

A type representing any bank account.
Afficher le fichier Open project: Benrnz/BudgetAnalyser Class Usage Examples

Private Properties

Свойство Type Description

Méthodes publiques

Méthode Description
Equals ( object obj ) : bool

Determines whether the specified System.Object, is equal to this instance. Or if the Account Equals the other Account

GetHashCode ( ) : int

Returns a hash code for this instance.

ToString ( ) : string

Returns a System.String that represents this instance.

operator ( ) : bool

Implements the operator ==. Delegates to Equals.

Méthodes protégées

Méthode Description
Account ( ) : JetBrains.Annotations

Initializes a new instance of the Account class.

Equals ( [ other ) : bool

Returns true if the Account.Name is equal to the other Account.Name

Method Details

Account() protected méthode

Initializes a new instance of the Account class.
protected Account ( ) : JetBrains.Annotations
Résultat JetBrains.Annotations

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

Equals() public méthode

Determines whether the specified System.Object, is equal to this instance. Or if the Account Equals the other Account
public Equals ( object obj ) : bool
obj object The to compare with this instance.
Résultat bool

GetHashCode() public méthode

Returns a hash code for this instance.
public GetHashCode ( ) : int
Résultat int

ToString() public méthode

Returns a System.String that represents this instance.
public ToString ( ) : string
Résultat string

operator() public static méthode

Implements the operator ==. Delegates to Equals.
public static operator ( ) : bool
Résultat bool