Answers for "text to c# list"

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

C# Answers by Framework

Browse Popular Code Answers by Language