Click or drag to resize
IUserAccessiableRandomizeArray Method
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.

Namespace: SurveyToGo.UserLogic.Interfaces
Assembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax
C#
int[] RandomizeArray(
	int[] inArray
)

Parameters

inArray
Type: SystemInt32
integers array

Return Value

Type: Int32
integers array (int[] type)
Examples
RandomizeArray(srcArray), will return a new array, with randomized order of srcArray cells content order.
See Also