Returns an int from prefixCoded characters. Rightmost bits will be zero for lower precision codes. This method can be used to decode e.g. a stored field.
not correctly prefix encoded.

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

Syntax

C#
public static int PrefixCodedToInt(
	string prefixCoded
)
Visual Basic
Public Shared Function PrefixCodedToInt ( _
	prefixCoded As String _
) As Integer
Visual C++
public:
static int PrefixCodedToInt(
	String^ prefixCoded
)

Parameters

prefixCoded
Type: System..::..String

[Missing <param name="prefixCoded"/> documentation for "M:Lucene.Net.Util.NumericUtils.PrefixCodedToInt(System.String)"]

Return Value

[Missing <returns> documentation for "M:Lucene.Net.Util.NumericUtils.PrefixCodedToInt(System.String)"]

See Also