Comment by bmurphy1976
Comment by bmurphy1976 a day ago
>To me, there's no difference between the IO param and async/await.
You can't pass around "async/await" as a value attached to another object. You can do that with the IO param. That is very different.
> You can't pass around "async/await" as a value attached to another object
Sure you can? You can just pass e.g. a Task around in C# without awaiting it, it's when you need a result from a task that you must await it.