Decodes the given char sequence, which must have been encoded by {@link #Encode(java.nio.ByteBuffer)} or {@link #Encode(java.nio.ByteBuffer, java.nio.CharBuffer)}.
array

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

Syntax

C#
public static List<byte> Decode(
	List<char> input
)
Visual Basic
Public Shared Function Decode ( _
	input As List(Of Char) _
) As List(Of Byte)
Visual C++
public:
static List<unsigned char>^ Decode(
	List<wchar_t>^ input
)

Parameters

input
Type: System.Collections.Generic..::..List<(Of <(<'Char>)>)>
The char sequence to decode

Return Value

A byte sequence containing the decoding result. The limit is set to one past the position of the final char.

See Also