using System;
public class Program
{
public static void Main()
var str1 = "hmm, lets see \\ what happens";
Console.WriteLine(str1);
foreach (var s in str1.Split('\\'))
Console.WriteLine(s);
}