Datatable.Dispose() will make it remove from memory?

DataSet and DataTable don’t actually have any unmanaged resources, so Dispose() doesn’t actually do much. The Dispose() methods in DataSet and DataTable exists ONLY because of side effect of inheritance – in other words, it doesn’t actually do anything useful in the finalization. It turns out that DataSets, DataViews, DataTables suppress finalization in their constructorsc … Read more