Note that this will remove the row from the collection, and it will not
be processed if passed to a data adapter.
If you want the effect of marking the row for delete and having the data
adapter deleting the row in the underlying data source, then you should call
the Delete method on the DataRow itself.
--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)
Family Tree Mike said:
Jacek Jurkowski said:
Release row from a table?
DataRow row = Table.Rows[0].Copy? Clone?
Table.Rows.Remove(Table.Rows[0]) or Table.Rows.RemoveAt(0)?