Answers for "add elements in a list c sharp"

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
-1

how to add to a list in c#

List<string> names = new List<string>();
names.Add("Bob");
Posted by: Guest on February-08-2022

C# Answers by Framework

Browse Popular Code Answers by Language