Skip to content

Instantly share code, notes, and snippets.

View spk33's full-sized avatar

Prasadh Kumar spk33

  • Payoda
  • Coimbatore
View GitHub Profile
@spk33
spk33 / TaskOfTuple.cs
Created March 9, 2022 10:16 — forked from ufcpp/TaskOfTuple.cs
Task of Tuple for async return values
public async Task<(int sum, int count)> TallyAsync(IEnumerable<int> values) { ... }
var t = await TallyAsync(myValues);
Console.WriteLine($"Sum: {t.sum}, count: {t.count}");