Returns a long 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 long PrefixCodedToLong(
	string prefixCoded
)
Visual Basic
Public Shared Function PrefixCodedToLong ( _
	prefixCoded As String _
) As Long
Visual C++
public:
static long long PrefixCodedToLong(
	String^ prefixCoded
)

Parameters

prefixCoded
Type: System..::..String

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

Return Value

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

See Also