fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. private static void f(ref int i) {
  6. i += 5;
  7. }
  8.  
  9. public static void Main()
  10. {
  11. var i = 0;
  12. {
  13. f(ref i);
  14. }
  15.  
  16. Console.WriteLine(i);
  17. // your code goes here
  18. }
  19. }
Success #stdin #stdout 0s 131520KB
stdin
Standard input is empty
stdout
5