Synopsis
DataTable.Reset();
Discards the contents of the DataTable
, resetting
it to an uninitialized state.
Example
The following example shows how reset a DataSet
to
its original state:
ds.Reset();
Note
Calling Reset( )
on an existing
DataTable
is more efficient than instantiating a
new DataTable
.