<PackageReference Include="NETStandard.Library" Version="2.0.0-preview2-25401-01" />
System.UnhandledExceptionEventArgs
namespace System
{
public class UnhandledExceptionEventArgs :
EventArgs
{
public object ExceptionObject { get; }
public bool IsTerminating { get; }
public UnhandledExceptionEventArgs(
object exception,
bool isTerminating);
}
}