March 2002
Intermediate to advanced
864 pages
31h 8m
English
Decoder
This class converts byte arrays to character arrays
using the encoding class from which it was constructed (a decoder is
returned by the GetDecoder() method of an
Encoding subclass).
Decoder saves its state between calls to
GetChars(), so leftover bytes from previous input
byte arrays are remembered and used in subsequent calls.
public abstract class Decoder { // Protected Constructors protected method Decoder(); // Public Instance Methods public abstract method int GetCharCount(byte[] bytes, int index, int count); public abstract method int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex); }
Encoding.GetDecoder()