▲ | shortrounddev2 3 days ago | |||||||||||||||||||||||||||||||||||||||||||||||||
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 | ||||||||||||||||||||||||||||||||||||||||||||||||||
▲ | malakai521 2 days ago | parent [-] | |||||||||||||||||||||||||||||||||||||||||||||||||
The syntax is exactly the same. You have `var x = await` in C# and `let! x =` in F# The controller handler is also the same. It will be marked with `async` keyword in C# and `task` CE in F# | ||||||||||||||||||||||||||||||||||||||||||||||||||
|