B
Bob
Is there a faster way to add an array to a list then looping through
the elements like:
double[] toadd;
list<double> listwant;
for (int i=0;i<toadd.Length;i++){
listwant.Add(toadd);
}
Thanks,
Bob
the elements like:
double[] toadd;
list<double> listwant;
for (int i=0;i<toadd.Length;i++){
listwant.Add(toadd);
}
Thanks,
Bob