Skip to content

Instantly share code, notes, and snippets.

@AngeloStavrow
Last active April 18, 2016 15:03
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 AngeloStavrow/e0b81193be440ece1f44a1aff273e30a to your computer and use it in GitHub Desktop.
Save AngeloStavrow/e0b81193be440ece1f44a1aff273e30a to your computer and use it in GitHub Desktop.
A handy MessageBox for displaying "not yet implemented"-type alerts in a Windows Forms application.
private void SorryNotSorry(string title, string message)
{
MessageBox.Show(message, title);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment