Skip to content

Instantly share code, notes, and snippets.

@robertgreiner
Created January 4, 2012 20:26
Show Gist options
  • Save robertgreiner/1561961 to your computer and use it in GitHub Desktop.
Save robertgreiner/1561961 to your computer and use it in GitHub Desktop.
public double SumSquaresUsingLinq()
{
return numberList.Sum(num => Math.Pow(num, 2));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment