Skip to content

Instantly share code, notes, and snippets.

@ufcpp
Created February 10, 2015 16:14
Show Gist options
  • Save ufcpp/716050f535ec35681a98 to your computer and use it in GitHub Desktop.
Save ufcpp/716050f535ec35681a98 to your computer and use it in GitHub Desktop.
Tuple syntax in C# 7 (proposed)
public (int sum, int count) Tally(IEnumerable<int> values) { ... }
var t = Tally(myValues);
Console.WriteLine($"Sum: {t.sum}, count: {t.count}");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment