fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int a = 1;
  8. Foo(ref a, ref a);
  9. Console.WriteLine(a);
  10. }
  11.  
  12. public static void Foo(ref int x, ref int y)
  13. {
  14. x = 5;
  15. y = 6;
  16. }
  17. }
Success #stdin #stdout 0.04s 23872KB
stdin
Standard input is empty
stdout
6