int[] StringToIntArray(string inString)
Description
Will turn a string in a specific format, to an Integer array.
Parameters
The following is a list of parameters the functions receives
Parameter | Type | Description |
---|---|---|
inString | string | Array name |
Return Type
int[]
Examples
Given the following string: '1,3,5,7'.
StringToIntArray('1,3,5,7'); will return an array holding the following integers: {1,3,5,7}
Comments
Please sign in to leave a comment.