bool zap();

The function zap() removes all records from a dbf file.
This operation cannot be undone.


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