Answers for "how to convert list string to list model 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 list of string to list of string c#

input.SelectMany(l => l).Distinct().ToList();
Posted by: Guest on December-07-2021

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

C# Answers by Framework

Browse Popular Code Answers by Language