There is an array having dimensioned to 100 elements
Data is filled up to the 4th element
Eg.
Dim s(100) as string
s(0) = "aa"
s(1) = "bb"
s(2) = "cc"
s(3) = "dd"


Is there a direct method to find the number of data filled elements (in this case, 4) without using a loop to find the element number having the "" element.
Also I don't want to use Collections.
Srinika