string IntArrayToString(int[] inArray)
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 |
---|---|---|
inArray | Int[] | Array name |
Return Type
string
Examples
Given the following array: arr, with the values {1,3,5,7}.
IntArraytoString(arr); will return the following string '1,3,5,7'
Comments
Please sign in to leave a comment.