Encoding.Convert Method (Encoding, Encoding, Byte[])
Converts an entire byte array from one encoding to another.
Assembly: mscorlib (in mscorlib.dll)
public static byte[] Convert( Encoding srcEncoding, Encoding dstEncoding, byte[] bytes )
Parameters
- srcEncoding
- Type: System.Text.Encoding
The encoding format of bytes.
- dstEncoding
- Type: System.Text.Encoding
The target encoding format.
- bytes
- Type: System.Byte[]
The bytes to convert.
Return Value
Type: System.Byte[]An array of type Byte containing the results of converting bytes from srcEncoding to dstEncoding.
| Exception | Condition |
|---|---|
| ArgumentNullException |
srcEncoding is null. -or- dstEncoding is null. -or- bytes is null. |
| DecoderFallbackException |
A fallback occurred (see Character Encoding in the .NET Framework for complete explanation) -and- srcEncoding. DecoderFallback is set to DecoderExceptionFallback. |
| EncoderFallbackException |
A fallback occurred (see Character Encoding in the .NET Framework for complete explanation) -and- dstEncoding. EncoderFallback is set to EncoderExceptionFallback. |
The following example converts a Unicode-encoded string to an ASCII-encoded string. Because the ASCII encoding object returned by the ASCII property uses replacement fallback and the Pi character is not part of the ASCII character set, the Pi character is replaced with a question mark, as the output from the example shows.
using System; using System.Text; class Example { static void Main() { string unicodeString = "This string contains the unicode character Pi (\u03a0)"; // Create two different encodings. Encoding ascii = Encoding.ASCII; Encoding unicode = Encoding.Unicode; // Convert the string into a byte array. byte[] unicodeBytes = unicode.GetBytes(unicodeString); // Perform the conversion from one encoding to the other. byte[] asciiBytes = Encoding.Convert(unicode, ascii, unicodeBytes); // Convert the new byte[] into a char[] and then into a string. char[] asciiChars = new char[ascii.GetCharCount(asciiBytes, 0, asciiBytes.Length)]; ascii.GetChars(asciiBytes, 0, asciiBytes.Length, asciiChars, 0); string asciiString = new string(asciiChars); // Display the strings created before and after the conversion. Console.WriteLine("Original string: {0}", unicodeString); Console.WriteLine("Ascii converted string: {0}", asciiString); } } // The example displays the following output: // Original string: This string contains the unicode character Pi (Π) // Ascii converted string: This string contains the unicode character Pi (?)
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.