C# tutorial: Dictionary-Clean up objects |
|||||||||||||||||||||||||||
Dictionary: Clean up objectsWhen the form loads many objects such as cn, rs, ad, com,and reader, are also created in the program for uses and these objects occupy spaces in computer memory. When the form is closed these objects should be released from the memory.
private void Dic_FormClosed(object sender,EventArgs e) You also need to add code: this.FormClosed+=new FormClosedEventHandler(Dic_FormClosed); to the form load event to make Dic_FormClosed() method callable.
private void Dic_Load(object sender, EventArgs e) Another thing we want to talk here is to let the user close the program when his/her clicks on the Close sub menu item form the File menu. This task can be done simply by attaching the following code to the click event of the Close sub menu item:
private void closeToolStripMenuItem_Click(object sender, EventArgs e) Now, let test your program and enjoy with it. If you have any questions regard this sample project, we recommend you to post them in our computer forum found in top menu of every web page.
|
|||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||