I have an MDI which has a child form. The child form has a datagridview in it. I load huge amount of data in the datagrid view. When I close the child form the disposing method is called in which I dispose the datagridview
this.dataGrid.Dispose(); this.dataGrid = null;
When i close the form the memory doesnt go down. I use the .net mem profiler to track the memory usage. I see that the memory usage goes high when i initially load the data grid (as expected) and then becomes constant when the loading is complete. When i close the form it still remains constant however when i take snapshot of the memory using the mem profiler, it down to what it was before loading the file. Taking memory snapshot causes it to forcelly run garbage collector.
Any idea what is going on is there a memory leak or do i need to run garbage collector forcefully? Any help is much appreciated.
- More info
When i am closing the form i no longer need the information that is why I am not holding a reference to the data.
