Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
List<int> into comma delimited string
//Title of this code //Rextester.Program.Main is the entry point for your code. Don't change it. using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { List<int> list = new List<int>() {1,2,3,4,5}; Console.WriteLine(list.Select(f => f.ToString()).Aggregate((x, y) => x+","+y)); } } }
run
|
edit
|
history
|
help
0
2015-2 matrix threads
3
Main3-3
C# Events and Delegates example
obraek
ProWIN2
6
simpleDelegate
Calculator
Number Comparer