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, out int endIndex ) |
| Visual Basic |
|---|
Public Shared Function ParseInt32 ( _ value As String, _ startIndex As Integer, _ <OutAttribute> ByRef endIndex As Integer _ ) As Integer |
| Visual C++ |
|---|
public: static int ParseInt32( String^ value, int startIndex, [OutAttribute] int% endIndex ) |
Parameters
- value
- Type: System..::..String
The value.
- startIndex
- Type: System..::..Int32
The start index.
- endIndex
- Type: System..::..Int32%
The end index.