Originally posted by Michael_Kamen
So, I declare it in my base class, but I can't give it a size yet.

Can I redeclare it later?
You can do something like this :

string[] str=null;


and when you need to use it do this ;

str=new string[5] .


I would go with Magiaus and say use ArrayList.