fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. Console.WriteLine("abc".Replace("", "k"));
  8. Console.WriteLine("".Replace("", "k"));
  9. }
  10. }
  11.  
Runtime error #stdin #stdout #stderr 0.08s 28820KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Unhandled exception. System.ArgumentException: String cannot be of zero length. (Parameter 'oldValue')
   at System.String.Replace(String oldValue, String newValue)
   at Test.Main() in /home/xH2rxX/Project/Program.cs:line 7