D
Davids
is it true that I cannot dynamically add an item to an array? Eg
public char[] = {"a","b"};
char.Add("newitem");
Do I really have to switch to ArrayList to do this?
public char[] = {"a","b"};
char.Add("newitem");
Do I really have to switch to ArrayList to do this?