DCSIMG
continue,continuation,async,DEV - Bnaya Eshet

Bnaya Eshet

Disclaimer

Browse by Tags

All Tags » continue » continuation » async » DEV (RSS)
async \ await and Exception Handling
async \ await and Exception Handling this post will discuss how async / await is handling exceptions . as we mention in previous post , about the async / await concept, await is all about continuation . before .NET 4.5 parallel execution exceptions has to be handle in separate of the synchronic handling. for example: handling ThreadPool execution: Code Snippet void Foo() { try { Console .WriteLine( "Synchronic" ); ThreadPool .QueueUserWorkItem(state => { try { Console .WriteLine( "Parallel"...