Calculates the number of characters produced by decoding a specified range of elements in an array of bytes.

Namespace: Jscape.Email
Assembly: Jscape.Email (in Jscape.Email.dll) Version: 2.4.5.0

Syntax

C#
public override int GetCharCount(
	byte[] bytes,
	int index,
	int count
)
Visual Basic
Public Overrides Function GetCharCount ( _
	bytes As Byte(), _
	index As Integer, _
	count As Integer _
) As Integer
Visual C++
public:
virtual int GetCharCount(
	array<unsigned char>^ bytes, 
	int index, 
	int count
) override

Parameters

bytes
Type: array<System..::..Byte>[]()[][]
The byte array to decode.
index
Type: System..::..Int32
The starting index where decoding begins.
count
Type: System..::..Int32
The number of bytes to decode.

Return Value

The number of characters produced by decoding a range of bytes in the specified byte array.

See Also