fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int a = 5;
  8. int b = 10;
  9.  
  10. Console.WriteLine("a={0}, b={1}", a, b);
  11. (a, b) = (b, a);
  12. a++;
  13. Console.WriteLine("a={0}, b={1}", a, b);
  14. }
  15. }
  16.  
Success #stdin #stdout 0.03s 25844KB
stdin
Standard input is empty
stdout
a=5, b=10
a=11, b=10