Often you just want to notify the user that something has occurred, but there's really no need for any input from them. In this common scenario, I sometimes see code like this:
MessageBox.Show("Something has occurred", "Something", MessageBoxButtons.OK);
This code, as we all know, causes a
…