Click or drag to resize
IUserAccessiableIntArrayToString Method
Will turn a string in a specific format, to an Integer array.

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

Parameters

inArray
Type: SystemInt32

Return Value

Type: String
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”
See Also