FISADategetAsInteger Method
Returns an integer representing this date, formated as YYYYMMDD.
Namespace: com.ftlabs.fisaAssembly: FISA.NET (in FISA.NET.dll) Version: 1.16.0.13 (1.16.0.13)
public int getAsInteger()
Public Function getAsInteger As Integer
Return Value
Int32
This is achieved using the following :
( year * 10000 ) + ( month * 100 ) + day.