Int[] RandomizeArray(Int32[] inArray)
Description
Gets an integers array inArray, and returns an integers array in the same size of inArray, with randomized order of the original inArray content order.
Parameters
The following is a list of parameters the functions receives
Parameter | Type | Description |
---|---|---|
inArray | Int32[] | integers array |
Return Type
Int []
Examples
RandomizeArray(srcArray), will return a new array, with randomized order of srcArray cells content order.
Comments
Please sign in to leave a comment.