Slides and Code from “Using C#’s Async Effectively”

Posted by Reed on Reed Copsey See other posts from Reed Copsey or by Reed
Published on Wed, 02 Oct 2013 23:04:46 +0000 Indexed on 2013/10/17 16:21 UTC
Read the original article Hit count: 164

Filed under:
|
|
|
|
|
|

The slides and code from my talk on the new async language features in C# and VB.Net are now available on https://github.com/ReedCopsey/Effective-Async

This includes the complete slide deck, and all 4 projects, including:

  • FakeService: Simple WCF service to run locally and simulate network service calls.
  • AsyncService: Simple WCF service which wraps FakeService to demonstrate converting sync to async
  • SimpleWPFExample: Simplest example of converting a method call to async from a synchronous version
  • AsyncExamples: Windows Store application demonstrating main concepts, pitfalls, tips, and tricks from the slide deck

© Reed Copsey or respective owner

Related posts about .NET

Related posts about algorithms