fork download
  1. using System;
  2.  
  3. public class JP
  4. {
  5. public int[] test = new int[5];
  6. }
  7.  
  8. public class Test
  9. {
  10. public static void Main()
  11. {
  12. JP one = new JP();
  13. JP two = new JP();
  14. one.test[0] = 400;
  15. two.test[0] = 800;
  16.  
  17. Console.WriteLine($"{one.test[0]}");
  18. }
  19. }
Success #stdin #stdout 0.02s 15976KB
stdin
Standard input is empty
stdout
400