Int64 getTicks(int fieldno);
The function getTicks() returns content of Date and DateTime field as timestamp in milliseconds since 1970.
Do not forget to call readRecord().
{
// your code
dbf.readRecord( row );
Console.WriteLine( dbf.getTicks( 0 ).ToString() );
// your code
}