convert string into list c# code example
Example 1: string to list c#
var names = "Brian,Joe,Chris";
List<string> result = names.Split(',').ToList();
Example 2: convert string to list int c#
var numbers = sNumbers.Split(',').Select(Int32.Parse).ToList();