Пример #1
0
        public EbDataTable GetEmptyTable()
        {
            EbDataTable __newTable = new EbDataTable();

            EbDataColumn[] dataColumns = new EbDataColumn[this.Columns.Count];
            this.Columns.CopyTo(dataColumns);

            foreach (EbDataColumn col in dataColumns)
            {
                __newTable.Columns.Add(col);
            }

            return(__newTable);
        }
Пример #2
0
 public RowColletion(EbDataTable table)
 {
     this.Table = table;
 }
 public ColumnColletion(EbDataTable table)
 {
     this.Table = table;
 }