DataTable::Rows Property
Gets the collection of rows that belong to this table.
Assembly: System.Data (in System.Data.dll)
[BrowsableAttribute(false)] public: property DataRowCollection^ Rows { DataRowCollection^ get (); }
Property Value
Type: System.Data::DataRowCollectionA DataRowCollection that contains DataRow objects; otherwise a null value if no DataRow objects exist.
To create a new DataRow, you must use the NewRow method to return a new object. Such an object is automatically configured according to the schema defined for the DataTable through its collection of DataColumn objects. After creating a new row and setting the values for each column in the row, add the row to the DataRowCollection using the Add method.
Each DataRow in the collection represents a row of data in the table. To commit a change to the value of a column in the row, you must invoke the AcceptChanges method.
The following shows two examples of returning and setting rows. The first example uses the Rows property and prints the value of each column for every row. The second example uses the DataTable object's NewRow method to create a new DataRow object with the schema of the DataTable. After setting the row values, the row is added to the DataRowCollection through the Add method.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.