Hi,
I have declared like this,
VB Code:
  1. string[] a = new string[] {""};
  2.             a[0]="Senthil";
  3.             a[1] = "Kumar";
But this code does not allow to dynamically extend the array. it shows the error "Index was outside the bounds of the array" while executing the last statement. I need to know the array of string which is expandable at anywhere. Any help.

regards,
senthil.