Click or drag to resize
IUserAccessiableintParse Method
Convert integer represented in string inA, into an int type

Namespace: SurveyToGo.UserLogic.Interfaces
Assembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax
C#
int intParse(
	string inA
)

Parameters

inA
Type: SystemString
string represent an integer

Return Value

Type: Int32
int type of the integer represemted in string inA
Exceptions
ExceptionCondition
Exception thrown if string inA doeasn't represent an integer
Examples
intParse("45") will return the integer 45
See Also