fork download
  1. using System;
  2. using System.Linq;
  3. using System.Collections.Generic;
  4.  
  5. public class Program
  6. {
  7. public static void Main()
  8. {
  9. IEnumerable<int> xs = new int[] { 1, 2, 3, 4, 5 };
  10. Console.WriteLine(xs.Count());
  11. }
  12. }
Success #stdin #stdout 0.03s 37080KB
stdin
Standard input is empty
stdout
5