fork download
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. List<string> tmp = new List<string>{"Hello", "There", "World"};
  9. tmp.Insert(tmp.Count - 1, "Cruel");
  10. foreach (var s in tmp) Console.WriteLine(s);
  11. }
  12. }
Success #stdin #stdout 0.02s 15988KB
stdin
Standard input is empty
stdout
Hello
There
Cruel
World