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

C#
2

string to list c#

var names = "Brian,Joe,Chris";
List<string> result = names.Split(',').ToList();
Posted by: Guest on November-22-2020
0

list of string to string c#

string Something = string.Join(",", MyList);
Posted by: Guest on June-15-2021

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

C# Answers by Framework

Browse Popular Code Answers by Language