using System; public class Test { public static void Main() { string temp = "01_Barnsley"; string textIWant = temp.Remove(0, 3); Console.WriteLine(textIWant); } }