Skip to content

Instantly share code, notes, and snippets.

@snippe
Created December 30, 2014 10:40
Show Gist options
  • Save snippe/20ee2717fccaf44f655d to your computer and use it in GitHub Desktop.
Save snippe/20ee2717fccaf44f655d to your computer and use it in GitHub Desktop.
IEnumerable<int> values = new List<int>() { 1, 2, 3 };
int sum = values.Sum(); //6
double average = values.Average(); //2.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment