Manually Reporting Exceptions

Wpf Example

try
{
    /* code */
}
catch (Exception ex)
{
    App.Reporter.ReportException(ex);
}

WindowsForms Example

try
{
    /* code */
}
catch (Exception ex)
{
    Program.Reporter.ReportException(ex);
}