Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

add all elements in a list c#

using System.Collections.Generic;
using System.Linq;

List<int> intList = new List<int>(){1, 2, 3, 4};
int sum = intList.Aggregate((x, y) => x + y);
 
PREVIOUS NEXT
Tagged: #add #elements #list
ADD COMMENT
Topic
Name
1+2 =