Skip to content

Instantly share code, notes, and snippets.

@lgolubyev
Created May 25, 2021 11:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lgolubyev/48d522efe7399de9204847eef9fea016 to your computer and use it in GitHub Desktop.
Save lgolubyev/48d522efe7399de9204847eef9fea016 to your computer and use it in GitHub Desktop.
//C#8
button.Click += (s, e) => {Message.Box.Show("Button clicked"); };
//C#9
button.Click += (_, _) => {Message.Box.Show("Button clicked"); };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment