split string c# to list code example
Example 1: c sharp split string
string text = "Hello World!"
string[] textSplit = text.Split(" ");
Example 2: c# split a string and return list
listStrLineElements = line.Split(',').ToList();
Example 3: c# convert split to list
using System.Linq;
listStrLineElements = line.Split(',').ToList();
Example 4: split using string c#
data.Split(new string[] { "xx" }, StringSplitOptions.None);
Example 5: parse strings into words C#
string text = "Hello World!"
string[] textSplit = text.Split();