MessageBoxIcon.Exclamation
using System;
using System.Windows.Forms;
public class MessageBoxShowExclamation {
static public void Main()
{
MessageBox.Show ("Hello, C# World!", "Howdy",
MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
}
Related examples in the same category