c# split tring code example
Example 1: c# split a string and return list
listStrLineElements = line.Split(',').ToList();
Example 2: split string in c#
string phrase = "The quick brown fox jumps over the lazy dog.";
string[] words = phrase.Split(' ');
foreach (var word in words)
{
System.Console.WriteLine($"<{word}>");
}