Answers for "convert list array to string array in c#"

C#
11

c# list to string

List<string> names = new List<string>() { "John", "Anna", "Monica" };
string result = string.Join(",", names.ToArray());
Posted by: Guest on May-11-2020
5

c# string array to string

string[] test = new string[2];

test[0] = "Hello ";
test[1] = "World!";

string.Join("", test);
Posted by: Guest on April-17-2020

Code answers related to "convert list array to string array in c#"

C# Answers by Framework

Browse Popular Code Answers by Language