If you're talking here about the dynamic arrays in the .NET framework - ArrayList and List<T> - which can automatically expand their capacity as new elements are added, then you can find the number of elements with the Count property.
Personally, I've always found this rather confusing as fixed sized arrays use the Length property for the same purpose.