fork(6) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. var str = "Hello : World";
  8. var result = str.Split(':')[1];
  9. var result2 = str.Substring(str.IndexOf(":") + 1);
  10.  
  11. Console.WriteLine(result);
  12. Console.WriteLine(result2);
  13. }
  14. }
Success #stdin #stdout 0.05s 34784KB
stdin
Standard input is empty
stdout
 World
 World