fork(9) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. static void f(params object[] x)
  6. {
  7. Console.WriteLine(x.Length);
  8. }
  9.  
  10. public static void Main()
  11. {
  12. object[] x = { 1, 2 };
  13. f(x);
  14. }
  15. }
Success #stdin #stdout 0.04s 37016KB
stdin
Standard input is empty
stdout
2