Quote Originally Posted by Aash View Post
how you do dynamic allocation in vb.net, does it use the same ReDim?
While this really is the wrong forum section for this kind of question; yes, ReDim is used to redimension arrays in VB.NET. That said, you normally wouldn't use arrays if you know that the size will change, you would use a collection such as a List(Of T).