Parses an integer from given string starting at specified index until a non digit character or the end of string is reached.
Namespace: FirstFloor.DocumentsAssembly: 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
) |
Return Value
The parsed integer value.
See Also