func getValue(_ fieldno: Int) -> Double

The function getValue() returns content of any numeric field as a double value.
Do not forget to call readRecord().


{
    // your code
    dbf.readRecord( row )
    print( dbf.getValue( 0 ) )
    // your code
}