Comments
Sort by recent activity
I made some modifications to the system, removed the DataSet template you can add to a project under new "Data" items.
Next I created an internal variable of DataSet type, manually defined the table and columns for the DataSet and then used that to pass data through the system.
After that, all references to the DataSet objects disappeared from the profiler and the application no longer increased slowly in memory use.
I'm guessing all the code the DataSet template generates doesn't fully release even though I called Close and Dispose on the variable I used to create a new instance of it with.
When in doubt, go back to old school and manually code everything I guess. =D Was just trying to take advantage of some of the wizard driven template systems. / comments
I made some modifications to the system, removed the DataSet template you can add to a project under new "Data" items.
Next I created an internal variable of DataSet type, manually defined the tabl...