Aggregations.ScrollableMessageBox.Show C# (CSharp) Method

Show() public method

public Show ( string message ) : DialogResult
message string
return DialogResult
        public DialogResult Show(string message)
        {
            this.messageBox.Text = message;
            return this.ShowDialog();
        }