I don't see how that changes things. You'd have to async it all the way to the top but the syntax is still cleaner than F#. If you're using an Asp.Net controller you just declare the handler as async Task<IActionResult> and it's fine. Even program main methods can be async these days
shortrounddev2|11 months ago
malakai521|11 months ago
The controller handler is also the same. It will be marked with `async` keyword in C# and `task` CE in F#
jayd16|11 months ago
int_19h|11 months ago