IUserAccessiableIntArrayToString Method |
Will turn a string in a specific format, to an Integer array.
Namespace: SurveyToGo.UserLogic.InterfacesAssembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax string IntArrayToString(
int[] inArray
)
Parameters
- inArray
- Type: SystemInt32
Return Value
Type:
StringString
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