Encodes the specified range of a System.String into the specified range of a chars array.
Namespace: Jscape.EmailAssembly: Jscape.Email (in Jscape.Email.dll) Version: 2.4.5.0
Syntax
C# |
---|
public override int GetBytes(
char[] chars,
int charIndex,
int charCount,
byte[] bytes,
int byteIndex
) |
Parameters
- chars
- Type: array<System..::..Char>[]()[][]
The character array to encode.
- charIndex
- Type: System..::..Int32
The starting index of the character array to encode.
- charCount
- Type: System..::..Int32
The number of characters to encode.
- bytes
- Type: array<System..::..Byte>[]()[][]
The byte array where the resulting encoding is stored.
- byteIndex
- Type: System..::..Int32
The starting index of the resulting encoding in the byte array.
Return Value
The number of bytes stored in array bytes.
See Also