Last active
October 22, 2015 18:31
-
-
Save joebuschmann/4e5965df1c536682f72a to your computer and use it in GitHub Desktop.
Employ the using statement to dispose of a modal form
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using (var form = new SelectUserForm()) | |
| { | |
| // Set form properties... | |
| if (form.ShowDialog(this) == DialogResult.OK) | |
| { | |
| // Process results... | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment