First page Back Continue Last page Overview Graphics
Computed Column Arrays
Like Unidata list variable
Elements can be inserted, deleted, extracted
Use [] notation to grab specific element
int xTemp;
int[] xlMylist;
...
xTemp = xlMylist[4];
return xTemp;