fork(4) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string s = "bobs nice house";
  8. string[] s1 = s.Split(' ');
  9. for(int i = 1; i < s1.Length; i++)
  10. Console.WriteLine(s1[i]);
  11. }
  12. }
Success #stdin #stdout 0.02s 33848KB
stdin
Standard input is empty
stdout
nice
house