I have the following code Snippet.
class Program
{
static void Main(string[] args)
{
try
{
Thread m_thread = new Thread(() =>
{
//try
//{
checkexc();
//}
//catch (Exception ex)
//{
//}
}
);
m_thread.Start();
}
catch (Exception ex)
{
}
}
static void checkexc()
{
throw new NullReferenceException();
}
}
NullReferenceException is not handled by the covering Try-Catch block. However if i wrap the delegate inside thread() constructor, then it is handled by that Try-Catch. Why doesnot outer Try-Catch handle this exception.