Skip to content

Instantly share code, notes, and snippets.

@joebuschmann
Last active October 22, 2015 18:31
Show Gist options
  • Select an option

  • Save joebuschmann/4e5965df1c536682f72a to your computer and use it in GitHub Desktop.

Select an option

Save joebuschmann/4e5965df1c536682f72a to your computer and use it in GitHub Desktop.
Employ the using statement to dispose of a modal form
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