TheConeHead
Programmer
I am only finding examples of arrays where you have to specify the length when creating it:
double[] prices = new double[20];
my question: Is there a way to not have to specify the length?? I would like it open-ended? I get an error when I try:
double[] prices = new double[];
double[] prices = new double[20];
my question: Is there a way to not have to specify the length?? I would like it open-ended? I get an error when I try:
double[] prices = new double[];