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