Skip to content

Instantly share code, notes, and snippets.

@JohnMGant
Created August 7, 2020 18:13
Show Gist options
  • Select an option

  • Save JohnMGant/de1d8e3424b756b2d1f1c9a748958f72 to your computer and use it in GitHub Desktop.

Select an option

Save JohnMGant/de1d8e3424b756b2d1f1c9a748958f72 to your computer and use it in GitHub Desktop.
Adds an array of integers in C# using Sum
internal class LinqSumAdder : IIntegerAdder
{
public int Add(int[] values) => values.Sum();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment