DataRowCollection.Remove Method
Assembly: System.Data (in system.data.dll)
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 Remove is the same as calling Delete and then calling AcceptChanges.
You can also use the Clear method to remove all members of the collection at one time.
The following example uses the Remove method to delete a found row in a DataRowCollection object. The example first uses the Contains method to determine whether the rows collection contains a row. If it does, the Find method is used to find the specific row, and the Remove method is then used to remove the row.
Private Sub RemoveFoundRow(ByVal table As DataTable) Dim rowCollection As DataRowCollection = table.Rows ' Test to see if the collection contains the value. If rowCollection.Contains(TextBox1.Text) Then Dim foundRow As DataRow = rowCollection.Find(TextBox1.Text) rowCollection.Remove(foundRow) Console.WriteLine("Row Deleted") Else Console.WriteLine("No such row found.") End If End Sub
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.