Encoding-Sensitive C# Method
using System.Text
public virtual Encoder GetEncoder();
Internationalization (I18n) Method Overview
The GetEncoder method obtains an Encoder that converts a sequence of Unicode characters into an encoded sequence of bytes.
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 correctly encodes character sequences that span blocks.
See Microsoft's
MSDN online documentation for more information.
C# Encoding Information
|