fork(1) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5.  
  6. struct test_struct {
  7. int A;
  8. int B;
  9. public test_struct(int a, int b) {A=a;B=b;}
  10. }
  11. public static void Main()
  12. {
  13. test_struct[,] x = new[,] {
  14. {new test_struct(1,2), new test_struct(3,4) }
  15. , {new test_struct(1,2), new test_struct(3,4) }
  16. , {new test_struct(1,2), new test_struct(3,4) }
  17. };
  18. }
  19. }
Success #stdin #stdout 0.01s 33552KB
stdin
Standard input is empty
stdout
Standard output is empty