fork(5) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string[,] matriz = new string[,]{
  8. {"1.1", "1.2", "1.3"},
  9. {"2.1", "2.2", "2.3"},
  10. {"3.1", "3.2", "3.3"}
  11. };
  12.  
  13. Console.WriteLine(String.Format("Length: {0}", matriz.Length));
  14. Console.WriteLine(String.Format("GetLength: {0}", matriz.GetLength(0)));
  15. }
  16. }
Success #stdin #stdout 0.03s 24120KB
stdin
Standard input is empty
stdout
Length: 9
GetLength: 3