por Carlos Ble | Feb 10, 2015 | Test Driven Development
.Net 4.5 came out with a really handy built-in asynchronous mechanism, async and await. However the method signature of a void method is a bit strange: public async Task SomeAction(){…} It is possible to use async void but it’s not recommended unless we...