Open
Description
Does DataTable
need to be disposed?
The assumption is that disposing is required as DataTable
implements IDisposable
and there is no explicit statement to the contrary in the documentation.
On the other hand in the examples at https://learn.microsoft.com/en-us/dotnet/api/system.data.datatable there are no calls to Dispose()
or any using statements.