Skip to content

Instantly share code, notes, and snippets.

@arslanbilal
Created December 6, 2014 22:38
Show Gist options
  • Save arslanbilal/72ae3ab6357b14017f87 to your computer and use it in GitHub Desktop.
Save arslanbilal/72ae3ab6357b14017f87 to your computer and use it in GitHub Desktop.
Message box with options in C#
if(MessageBox.Show("Are you sure?", "Yes", MessageBoxButtons.YesNo) == DialogResult.Yes)
{
//code here...
}
else
{
//code here...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment