using System.Collections.Generic; public class KGFDataTable { private List itsColumns = new List(); private List itsRows = new List(); public List Columns { get { return itsColumns; } } public List Rows { get { return itsRows; } } public KGFDataRow NewRow() { return new KGFDataRow(this); } }