fork(1) download
  1. using System;
  2.  
  3. public class TestClass {
  4. public string name;
  5.  
  6. }
  7.  
  8. public class Test
  9. {
  10. public static void Main()
  11. {
  12. var first = new TestClass();
  13. first.name = "I'm first";
  14.  
  15. var second = first;
  16. second.name = "I'm second";
  17.  
  18. Console.WriteLine(first.name);
  19. }
  20. }
Success #stdin #stdout 0.02s 15836KB
stdin
Standard input is empty
stdout
I'm second