Skip to content

buvinghausen/TaskTupleAwaiter

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
src
February 27, 2023 12:39
May 24, 2023 09:47
August 7, 2020 17:17
August 7, 2020 16:27

TaskTupleAwaiter

Continuous IntegrationNuGetLicense: MIT

Async helper library to allow leveraging the new ValueTuple data types in C# 7.0 to thread and run tasks with disparate return types.

var (result1, result2) = await (GetStringAsync(), GetGuidAsync());

var (policy, preferences) = await (
    GetPolicyAsync(policyId, cancellationToken),
    GetPreferencesAsync(cancellationToken)
).ConfigureAwait(false);

About

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

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages