fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int myInt = 25;
  8. object boxedInt = myInt;
  9. boxedInt = 50;
  10. Console.WriteLine("int: {0}, object: {1}", myInt, boxedInt);
  11. }
  12. }
Success #stdin #stdout 0.01s 131520KB
stdin
Standard input is empty
stdout
int: 25, object: 50