JapaneseEncodingGetChars Method (Byte, Int32, Int32, Char, Int32) | 
 
            Decodes a sequence of bytes from the specified byte array into the specified character array.
            
 
    Namespace: 
   Zyrenth.Zora
    Assembly:
   ZoraSharp (in ZoraSharp.dll) Version: 2.3
Syntaxpublic override int GetChars(
	byte[] bytes,
	int byteIndex,
	int byteCount,
	char[] chars,
	int charIndex
)
Public Overrides Function GetChars ( 
	bytes As Byte(),
	byteIndex As Integer,
	byteCount As Integer,
	chars As Char(),
	charIndex As Integer
) As Integer
Parameters
- bytes
 - Type: SystemByte
The byte array containing the sequence of bytes to decode. - byteIndex
 - Type: SystemInt32
The index of the first byte to decode. - byteCount
 - Type: SystemInt32
The number of bytes to decode. - chars
 - Type: SystemChar
The character array to contain the resulting set of characters. - charIndex
 - Type: SystemInt32
The index at which to start writing the resulting set of characters. 
Return Value
Type: 
Int32The actual number of characters written into chars.
See Also