fork download
  1. using System;
  2.  
  3. class SomeClass {
  4. public static int s = 1;
  5. public int d = 1;
  6.  
  7.  
  8. public static void Main()
  9. {
  10. var obj1 = new SomeClass();
  11. var obj2 = new SomeClass();
  12. obj1.d = 42;
  13. obj2.d = 43;
  14. Console.Write(obj1.d + " " + obj2.d);
  15. }
  16. }
Success #stdin #stdout 0.02s 15872KB
stdin
Standard input is empty
stdout
42 43