Beispiel #1
0
        public CdlRow AddRow(ICdlRecord record)
        {
            var row = new CdlRow(this, new ArrayDataRecord(record), CdlRowState.Unchanged, m_structure);

            Rows.AddInternal(row);
            return(row);
        }
Beispiel #2
0
 public void AddRowInternal(ArrayDataRecord rec)
 {
     Rows.AddInternal(new CdlRow(this, rec, CdlRowState.Unchanged, m_structure));
 }
Beispiel #3
0
 public void AddRow(IBedRecord record)
 {
     Rows.AddInternal(new BedRow(this, new ArrayDataRecord(record), BedRowState.Unchanged, m_structure));
 }