UTF32Encoding: GetEncoder

GetEncoder

Obtains an encoder that converts a sequence of Unicode characters into an ASCII encoded sequence of bytes.



 Public Function GetEncoder ( ) As Encoder

Return Values

Encoder -  An Encoder that converts a sequence of Unicode characters into an ASCII encoded sequence of bytes.

Remarks

The Encoder.GetBytes method converts sequential blocks of characters into sequential blocks of bytes, in a manner similar to the GetBytes method of this class. However, an Encoder maintains state information between calls so it can correctly encode character sequences that span blocks. The Encoder also preserves trailing characters at the end of data blocks and uses the trailing characters in the next encoding operation. For example, a data block might end with an unmatched high surrogate, and the matching low surrogate might be in the next data block. Therefore, Project CorLib Overview

Class UTF32Encoding Overview