IUserAccessiableStringToIntArray 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 int[] StringToIntArray(
string inString
)
Parameters
- inString
- Type: SystemString
Input String(text)
Return Value
Type:
Int32Integer Array
Examples
Given the following string: “1,3,5,7”.
StringToIntArray(“1,3,5,7”); will return an array holding the following integers: {1,3,5,7}
See Also