Pages

Men

rh

7/01/2012

What do you mean by Redim in VB.NET ?

In vb.net we use Redim and erase to manipulate Array. Once we declare an array the size set to array its makes limited to that range but with the help of redim we used to change the array size.

Redim arr(6)
we can also used preserve to save these values.
Redim Preserve arr(6)

No comments :

Post a Comment