Exception Helper is just the Exception Assistant that managed code has always had. It is the newer UI to help diagnose exceptions when they occur. It is not modal and provides more information. There isn't a UI until an exception occurs. Example code to
trigger it.
using System;
namespace ShowException
{
public class Program
{
static void Main ( string[] args )
{
throw new Exception("Will show the exception UI");
}
}
}
Refer to this
blog article for more information.
Michael Taylor http://www.michaeltaylorp3.net