func deleteRecord(_ recno: Int) -> Bool
The function deleteRecord() physically removes a record from a file.
This operation cannot be undone.
This operation cannot be undone.
{
// your code
dbf.deleteRecord(10)
dbf.deleteRecord(20)
// your code
}