The DataTable is the container for rows and columns and could be considered the focal point of all disconnected data
Login to rate this answer.
Trapti
Answered On : Sep 14th, 2011
The DataTable class is a member of the System.Data namespace within the .NET Framework class library. You can create and use a DataTable independently or as a member of a DataSet, and DataTable objects can also be used in conjunction with other .NET Framework objects, including the DataView. You access the collection of tables in a DataSet through the Tables property of the DataSet object.
Login to rate this answer.