Issue
I found different post on this topic but I could not find a suitable solution nor understand the code. Anyway, I do have an array that works like a non-squared matrix with columns and rows. From that array I want to retrieve the number of columns and rows later on.
this.myArray = new AreaTuple[cols][rows];
But how? I know how this works in C# but not in Java.
Solution
Number of Rows
this.myArray.length;
Number of Columns
this.myArray[0].length;
Answered By - Sanjeev
Answer Checked By - Clifford M. (JavaFixing Volunteer)