fork download
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. List<Test> list = new List<Test>();
  9.  
  10. Func(list);
  11. }
  12.  
  13. public static void Func(IEnumerable<object> objects)
  14. {
  15. foreach (var obj in objects)
  16. {
  17.  
  18. }
  19. }
  20. }
Success #stdin #stdout 0s 29016KB
stdin
Standard input is empty
stdout
Standard output is empty