using System;
using System.Runtime.InteropServices;
namespace System
{
/// Represents the method that will handle the event raised by an exception that is not handled by the application domain.
/// The source of the unhandled exception event.
/// An that contains the event data.
/// 2
// Token: 0x020006EF RID: 1775
// (Invoke) Token: 0x06004244 RID: 16964
[ComVisible(true)]
[Serializable]
public delegate void UnhandledExceptionEventHandler(object sender, UnhandledExceptionEventArgs e);
}