fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. // your code goes here
  8. var r1 = new refType();
  9. var r2 = r1;
  10.  
  11. r1.sprop = "hi there";
  12.  
  13. Console.WriteLine(r2.sprop);
  14. }
  15.  
  16. public class refType
  17. {
  18. public string sprop { get; set; }
  19. }
  20. }
Success #stdin #stdout 0.02s 33816KB
stdin
Standard input is empty
stdout
hi there