f# split string into list code example
Example 1: c# split a string and return list
listStrLineElements = line.Split(',').ToList();
Example 2: how to concert a list into strinf splitted by coma c#
string commaSeperatedNumbers = String.Join(",", new List<int> { 1, 2, 3, 4, 5 });