Encodes the input byte sequence.
array

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

Syntax

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

Parameters

input
Type: System.Collections.Generic..::..List<(Of <(<'Byte>)>)>
The byte sequence to encode

Return Value

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

See Also