В WPF используйте это:
using System.Windows;
public void ShowAlert(title, text)
{
MessageBox.Show(text, title, MessageBoxButtons.OK, MessageBoxImage.Warning);
}
В WinForms используйте это:
using System.Windows.Forms;
public void ShowAlert(title, text)
{
MessageBox.Show(text, title, MessageBoxButtons.OK, MessageBoxIcon.Warning);
}