If I have a task which throws an exception , I can check in the continuation if there was an exception:
Task task1 = Task.Factory.StartNew (() => { throw null; });
Task task2 = task1.ContinueWith (ant => Console.Write (ant.Exception));
But I also know that :
If an antecedent throws and the continuation fails to query the antecedent’s Exception property (and the antecedent isn’t otherwise waited upon), the exception is considered unhandled and the application dies .
So I tried :
Task task1 = Task.Factory.StartNew (() => { throw null; });
Task task2 = task1.ContinueWith (ant => Console.Write (1));//1
But the application didn't crash.
Please, What am I missing ?

task2.Wait()– Matthew Watson Feb 23 at 16:55throw nullis a weird way to causeNullReferenceException. I believe the usual way to do something like this isthrow new Exception(). – svick Feb 23 at 17:01