30 lines
410 B
C#
30 lines
410 B
C#
using System.Collections.Generic;
|
|
|
|
public class KGFDataTable
|
|
{
|
|
private List<KGFDataColumn> itsColumns = new List<KGFDataColumn>();
|
|
|
|
private List<KGFDataRow> itsRows = new List<KGFDataRow>();
|
|
|
|
public List<KGFDataColumn> Columns
|
|
{
|
|
get
|
|
{
|
|
return itsColumns;
|
|
}
|
|
}
|
|
|
|
public List<KGFDataRow> Rows
|
|
{
|
|
get
|
|
{
|
|
return itsRows;
|
|
}
|
|
}
|
|
|
|
public KGFDataRow NewRow()
|
|
{
|
|
return new KGFDataRow(this);
|
|
}
|
|
}
|