How to make a simple popup box in Visual C#?

c#, popup, user-interface, visual-studio

Solution

System.Windows.Forms.MessageBox.Show("My message here");

Make sure the `System.Windows.Forms` assembly is referenced your project.

Problem

When I click a button, I want a box to popup on the screen and display a simple message. Nothing fancy really. How would I do that?

Original source