C# Print list of string array

The simplest way to achieve this is: using String.Join

string[] arr = new string[] { "one", "two", "three", "four" };
Console.WriteLine(String.Join("\n", arr)); 

Hope this helps.

Leave a Comment