WikiFunctions.Tools.MessageBox C# (CSharp) Method

MessageBox() public static method

Wrapper for System.Windows.Forms.MessageBox.Show() - So things dont have to reference the Forms library
public static MessageBox ( string message ) : void
message string
return void
        public static void MessageBox(string message)
        {
            System.Windows.Forms.MessageBox.Show(message);
        }
Tools