C# Class BudgetAnalyser.Engine.BankAccount.Account

A type representing any bank account.
ファイルを表示 Open project: Benrnz/BudgetAnalyser Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method 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.

Protected Methods

Method 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 method

Initializes a new instance of the Account class.
protected Account ( ) : JetBrains.Annotations
return JetBrains.Annotations

Equals() protected method

Returns true if the Account.Name is equal to the other Account.Name
protected Equals ( [ other ) : bool
other [
return bool

Equals() public method

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.
return bool

GetHashCode() public method

Returns a hash code for this instance.
public GetHashCode ( ) : int
return int

ToString() public method

Returns a System.String that represents this instance.
public ToString ( ) : string
return string

operator() public static method

Implements the operator ==. Delegates to Equals.
public static operator ( ) : bool
return bool