public AvrDataTable Clone() { var clone = new AvrDataTable(); clone.Columns.CopyCollectionFrom(Columns); return(clone); }
public AvrDataTable Copy() { AvrDataTable newTable = Clone(); IEnumerable <AvrDataRowBase> newRows = Rows.Select(row => row.Clone()); newTable.Rows.AddRange(newRows); return(newTable); }
public AvrRowEvaluatorContextDescriptor(AvrDataTable table) { m_Table = table; }
public AvrDataColumnCollection(AvrDataTable parentTable) { Utils.CheckNotNull(parentTable, "parenTable"); m_ParentTable = parentTable; m_Counter = new AvrDataRowCounter(); }