Advertisement
Guest User

Untitled

a guest
Dec 29th, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. public void ShowMyForm()
  2. {
  3. MyForm myForm = new MyForm();
  4. myForm.ShowDialog();
  5. }
  6.  
  7. public void ShowMyForm()
  8. {
  9. using (MyForm myForm = new MyForm())
  10. {
  11. myForm.ShowDialog();
  12. }
  13. }
  14.  
  15. using ( var dlg = new MyDialog() )
  16. {
  17. // other code here to initialize, etc.
  18. dlg.ShowDialog();
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement