Encoding-Sensitive C# Method
using System.Text
public virtual Decoder GetDecoder();
Internationalization (I18n) Method Overview
The GetDecoder method obtains a Decoder that converts an encoded sequence of bytes into a sequence of characters.
The Decoder.GetChars method converts sequential blocks of bytes into sequential blocks of characters,
in a manner similar to the GetChars method of this class. However, a Decoder maintains
state information between calls so it correctly decodes byte sequences that span blocks.
See Microsoft's
MSDN online documentation for more information.
C# Encoding Information
|