Answers for "add every item of a list to a list c#"

C#
4

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);
Posted by: Guest on September-27-2020
2

List C# add from List

List<string> initialList = new List<string>();
// Put whatever you want in the initial list
List<string> listToAdd = new List<string>();
// Put whatever you want in the second list
initialList.AddRange(listToAdd);
Posted by: Guest on May-13-2020

Code answers related to "add every item of a list to a list c#"

C# Answers by Framework

Browse Popular Code Answers by Language