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