Name

Decoder

Synopsis

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);  
}

Returned By

Encoding.GetDecoder()

Get C# in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.