fork(15) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string temp = "01_Barnsley";
  8. string textIWant = temp.Remove(0, 3);
  9. Console.WriteLine(textIWant);
  10. }
  11. }
Success #stdin #stdout 0.03s 33808KB
stdin
Standard input is empty
stdout
Barnsley