fork(1) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string temp = "01_Barnsley123";
  8. string textIWant = temp.Remove(11, 4);
  9. Console.WriteLine(textIWant);
  10. }
  11. }
Runtime error #stdin #stdout #stderr 0.01s 134976KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Unhandled Exception:
System.ArgumentOutOfRangeException: Index and count must refer to a location within the string.
Parameter name: count
  at System.String.Remove (System.Int32 startIndex, System.Int32 count) [0x00055] in <8f2c484307284b51944a1a13a14c0266>:0 
  at Test.Main () [0x00006] in <d219f26cf6e445a49a0f4f88fab6d691>:0 
[ERROR] FATAL UNHANDLED EXCEPTION: System.ArgumentOutOfRangeException: Index and count must refer to a location within the string.
Parameter name: count
  at System.String.Remove (System.Int32 startIndex, System.Int32 count) [0x00055] in <8f2c484307284b51944a1a13a14c0266>:0 
  at Test.Main () [0x00006] in <d219f26cf6e445a49a0f4f88fab6d691>:0