Parses a char array into an int.

Namespace: Lucene.Net.Util
Assembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1

Syntax

C#
public static int ParseInt(
	char[] chars,
	int offset,
	int len
)
Visual Basic
Public Shared Function ParseInt ( _
	chars As Char(), _
	offset As Integer, _
	len As Integer _
) As Integer
Visual C++
public:
static int ParseInt(
	array<wchar_t>^ chars, 
	int offset, 
	int len
)

Parameters

chars
Type: array<System..::..Char>[]()[][]
the character array
offset
Type: System..::..Int32
The offset into the array
len
Type: System..::..Int32
The length

Return Value

the int

See Also