In my C# project, I am creating a Hangman game that has a set of buttons which contains the alphabets from A to Z. All these buttons when clicked will execute the same metho
Something like
private void Button_Click(object sender, EventArgs e) { Button b = (Button) sender; //button name }
msdn