How to dispose of all datasets to save memory space?
hi,
How do I dispose a dataset or datatable after it is being used?
is it
dataset.Dispose();
How do I dispose the garbage collector of all datasets that are used previously?
is it
GC.Collect();
but it does not work.