I've got a very standard-fare try / catch that isn't catching a NullReferenceException. I'm trying to return a date value from a form using the .Tag property. This tag will frequently be null, which is fine. My code below seems the simplest to me but it won't catch. Any help would be great, thanks in advance...
public void ScheduleDataRun()
{
FrmSetTimer frmSetTimer = new FrmSetTimer(DateTimeOfNextAvailableDataRun);
try
{
frmSetTimer.ShowDialog();
DateTimeOfNextScheduledDataRun = (DateTime)frmSetTimer.Tag;
SetDataRunTimer(DateTimeOfNextScheduledDataRun);
Status = DRMStatus.Scheduled;
}
catch
{
Status = DRMStatus.Inactive;
StatusChanged();
}
}
Edit: Issue solved per Diggingforfire suggestion below: "In the Debug->Exceptions menu you can choose to break on thrown and user-unhandled exceptions."
