TaskTupleAwaiter icon indicating copy to clipboard operation
TaskTupleAwaiter copied to clipboard

Async helper library to allow leveraging the new ValueTuple data types in C# 7.0

Results 5 TaskTupleAwaiter issues
Sort by recently updated
recently updated
newest added

@jnm2 feel free to verify. already worked on my machine.

I can't really think of a use case where i had to do more than 5 things in parallel, but there might be others who desire to do more things...

infrastructure

At the moment, only `Task`s are supported by the library. However there is also `ValueTask` which would be a nice addition on their own and also together in `Tuple`s with...

System.Text.Json 10.0.0 depends on System.ValueTuple 4.6.1. If you're on .NET Framework and you want to use System.Text.Json 10.0.0 and you use TaskTupleAwaiter, you will hit a slew of compile errors...

bug

Fixes #34. This workaround is one of the three options identified at https://github.com/buvinghausen/TaskTupleAwaiter/issues/34#issuecomment-3519340657. I prefer this approach because it targets the minimum API set that the package needs. Adding an...