DataRowCollection.RemoveAt Method
.NET Framework 4
Removes the row at the specified index from the collection.
Assembly: System.Data (in System.Data.dll)
Parameters
- index
- Type: System.Int32
The index of the row to remove.
When a row is removed, all data in that row is lost. You can also call the Delete method of the DataRow class to just mark a row for removal. Calling RemoveAt is the same as calling Delete and then calling AcceptChanges.
You can use the Clear method to remove all members of the collection at one time.
The following example removes the last row in a DataRowCollection by calling the RemoveAt method.
Private Sub RemoveRowByIndex() Dim table As DataTable = CType(DataGrid1.DataSource, DataTable) Dim rowCollection As DataRowCollection = table.Rows If rowCollection.Count = 0 Then Exit Sub End If rowCollection.RemoveAt(rowCollection.Count - 1) End Sub
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.