In Java and c# you can get the total lenght of an array with
array.length or simular. Not only the length of the filled elements, I want the length of the total array.
Lets say the array is introduced as this.
string array[100];
Maybe its half filled or not it shouldnt matter.
If I in another part of the program want the length (100) without sending 100 as an argument, is that impossible????
Note, I dont care how many elements that are filled, I just want the total length.
Getting crazy here!!