Skip to content

Instantly share code, notes, and snippets.

@inoook
Created December 7, 2018 12:16
Show Gist options
  • Save inoook/0c99004800273ef5e857b7ecf7117ae7 to your computer and use it in GitHub Desktop.
Save inoook/0c99004800273ef5e857b7ecf7117ae7 to your computer and use it in GitHub Desktop.
EventHandler handler = null;
handler = (sender, e) => {
button1.Click -= handler;
MessageBox.Show("click");
};
button1.Click += handler;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment