Returns the number of bytes required to decode the given char sequence.

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

Syntax

C#
public static int GetDecodedLength(
	List<char> encoded
)
Visual Basic
Public Shared Function GetDecodedLength ( _
	encoded As List(Of Char) _
) As Integer
Visual C++
public:
static int GetDecodedLength(
	List<wchar_t>^ encoded
)

Parameters

encoded
Type: System.Collections.Generic..::..List<(Of <(<'Char>)>)>
The char sequence to be encoded. Must be backed by an array.

Return Value

The number of bytes required to decode the given char sequence

See Also