bool truncate(int recno);

The function truncate(N) removes all records after N.
This operation cannot be undone.


{
    // your code
    Console.WriteLine( "Reccount = {0}", dbf.recCount() );
    dbf.truncate(100);
    Console.WriteLine( "Reccount = {0}", dbf.recCount() );
    // your code
}