BaseEncoding GetChars Method ( Byte , Int32, Int32,  Char , Int32, Int32)CryptSharp
Converts bytes from their binary representation to a text representation.

Namespace: CryptSharp.Utility
Assembly: CryptSharp (in CryptSharp.dll) Version: 2.0.0.0
Syntax

public int GetChars(
	byte[] bytes,
	int byteIndex,
	int byteCount,
	char[] chars,
	int charIndex,
	int charCount
)

Parameters

bytes
Type:  OnlineSystem Byte 
An input array of bytes.
byteIndex
Type: OnlineSystem Int32
The index of the first byte.
byteCount
Type: OnlineSystem Int32
The number of bytes to read.
chars
Type:  OnlineSystem Char 
An output array of characters.
charIndex
Type: OnlineSystem Int32
The index of the first character.
charCount
Type: OnlineSystem Int32
The number of characters to write.

Return Value

The number of characters written.
See Also