int GetIntArray(string intname, int index)
Returns the value of a global, one-dimensional integer array index.
int num[12]; string my_var = "num"; // my_var now points to num. int my_index = 7; // my_index is set to 7. GetIntArray(my_var, my_index); // Gets the value of num[7].
There are no talkbacks on this documentation page yet. Post the first?
Doc Nav |
Your docs |