Browse by Tags

All Tags » .NET Development » Async Functions (RSS)

C#, Async, Limits, oh my!

One of the great sessions at Codemash was a dual-speaker session with Bill Wagner and Jon Skeet— Async from the Inside . In that session Bill and Jon describe (in great detail) the state machine that the C# compiler generates when it compiles async code...

Testing Strategies Involving Async Functions

Some things to keep in mind when writing units tests for code that use async methods: You're not trying to test the framework's "awaitability" and you're not trying to test framework methods that are "awaitable". You want...