How do I figure out if a object has dimensions
Dim ASD as new ArrayList
ASD.add("hello")
ASD.add("World")
Dim Question as boolean = ASD.GetType.IsArray
Then Question will = false
But I need away to recognize that it has dimensions.
Not just for ArrayLists but for any type of collection which can store multiple objects.
Any ideas?
Try this: