Comment by shortrounddev2

Comment by shortrounddev2 3 days ago

7 replies

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 3 days ago

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#

  • shortrounddev2 3 days ago

    It's absolutely not exactly the same; let! is only available within a computation block. If you want to return some value from the computation block and return to Functional land without having to pause the thread you need to use a continuation, which C# has built in syntactic sugar for in async/await and F# does not.

    • sparkie 3 days ago

      `await` can only be used in an `async` function. How is that so different from `let!` only being available in a computation expression?

      • shortrounddev2 3 days ago

        because an async function doesn't require you to change syntaxes to get them to work

    • xigoi 3 days ago

      A computation block is the equivatent of an async function;