FISADategetAsInteger Method

Returns an integer representing this date, formated as YYYYMMDD.

Definition

Namespace: com.ftlabs.fisa
Assembly: FISA.NET (in FISA.NET.dll) Version: 1.16.0.13 (1.16.0.13)
C#
public int getAsInteger()

Return Value

Int32

Remarks

This is achieved using the following : ( year * 10000 ) + ( month * 100 ) + day.

See Also