fork(1) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string[,] a = {
  8. {"0", "1", "2"},
  9. {"0", "1", "2"},
  10. {"0", "1", "2"},
  11. {"0", "1", "2"},
  12. };
  13. Console.WriteLine(a.Length);
  14. Console.WriteLine(a.Rank);
  15. Console.WriteLine(a.GetLength(0));
  16. }
  17. }
Success #stdin #stdout 0.03s 24112KB
stdin
Standard input is empty
stdout
12
2
4