using System;
public class Program
{
public static void Main()
string strC = "111-222-3333";
// Method Signature: string[] Split (params char[] separator);
string[] strArray = strC.Split('-');
// Loop through the array using foreach and prints out all the array elements to the console:
foreach (string str in strArray)
Console.WriteLine(str);
}