fork download
  1. class P{
  2. public static void Main(){
  3. System.Collections.Generic.List<int> x = new System.Collections.Generic.List<int>();
  4. x.Add(1);
  5. x.Add(2);
  6. x.Add(3);
  7.  
  8. System.Console.WriteLine(System.String.Concat(x.ConvertAll(delegate(int p){ return p.ToString();})));
  9. }
  10. }
Success #stdin #stdout 0.01s 38104KB
stdin
Standard input is empty
stdout
System.Collections.Generic.List`1[System.String]