fork download
  1. using System;
  2.  
  3. class C {
  4. static void Main(string[] args) {
  5. int x = 513;
  6. Console.WriteLine("x = " + x);
  7. f(ref x);
  8. Console.WriteLine("x = " + x);
  9. }
  10. static void f(ref int a) {
  11. a++;
  12. }
  13. }
  14. /* end */
  15.  
Success #stdin #stdout 0.03s 14740KB
stdin
Standard input is empty
stdout
x = 513
x = 514