Calculates the number of days between two dates using the implemented Day Count method.

Namespace:  com.ftlabs.fisa
Assembly:  FISA.NET (in FISA.NET.dll) Version: 1.0.3126.3801

Syntax

C#
public abstract double calculateDays(
	FISADate earlierDate,
	FISADate laterDate,
	int interestFrequency,
	bool eomAdjust
)
Visual Basic (Declaration)
Public MustOverride Function calculateDays ( _
	earlierDate As FISADate, _
	laterDate As FISADate, _
	interestFrequency As Integer, _
	eomAdjust As Boolean _
) As Double
Visual C++
public:
virtual double calculateDays(
	FISADate^ earlierDate, 
	FISADate^ laterDate, 
	int interestFrequency, 
	bool eomAdjust
) abstract

Parameters

earlierDate
Type: com.ftlabs.fisa..::.FISADate
the starting date of the period.
laterDate
Type: com.ftlabs.fisa..::.FISADate
the ending date of the period.
interestFrequency
Type: System..::.Int32
the interestFrequency.
eomAdjust
Type: System..::.Boolean
determines whether the end of month adjustment rule is used.

Return Value

the number of days within the specified period.

See Also