Parses an integer from given string starting at specified index until a non digit character or the end of string is reached.

Namespace: FirstFloor.Documents
Assembly: FirstFloor.Documents (in FirstFloor.Documents.dll) Version: 2.5.0.0 (2.5.1.0)

Syntax

C#
public static int ParseInt32(
	string value,
	int startIndex
)
Visual Basic
Public Shared Function ParseInt32 ( _
	value As String, _
	startIndex As Integer _
) As Integer
Visual C++
public:
static int ParseInt32(
	String^ value, 
	int startIndex
)

Parameters

value
Type: System..::..String
The value.
startIndex
Type: System..::..Int32
The start index.

Return Value

The parsed integer value.

See Also