How do you get a class to interact with the form to show a message box?
using System.Windows.Forms; public class message { static void Main() { MessageBox.Show("Hello World!"); } }