C#.Net provides Split() function to split the string by the specified char and stores it in array. Split string using C# is bit easy task. In C# we can split string into substrings—such as splitting a sentence into individual words. In this case we set split char as a "," character and then it will returns an array of substrings
using System;
public class sortlist
{
public static void Main()
{
string myString = "C#,VB,ASP.NET,C++";
string[] splitedString = myString.Split(‘,’);
foreach(string item in splitedString)
{
Console.WriteLine(item);
}
}
}
//Output //C# //VB //ASP.NET //C++