/// <summary> /// Creates a new <see cref="DbfRecord" /> with the same schema as the table. /// </summary> /// <returns>A <see cref="DbfRecord" /> with the same schema as the <see cref="T:System.Data.DataTable" />.</returns> public DbfRecord CreateRecord() { DbfRecord record = new DbfRecord(Fields); Records.Add(record); return(record); }
public DbfRecord CreateRecord() { DbfRecord record = new DbfRecord(fields); this.records.Add(record); return(record); }
public void UndeleteRecord(DbfRecord record) { record.Undelete(); }
public void DeleteRecord(DbfRecord record) { record.Delete(); }