Encoding::Convert Method (Encoding, Encoding, array<Byte>)

Converts an entire byte array from one encoding to another.

Namespace:  System.Text
Assembly:  mscorlib (in mscorlib.dll)

No code example is currently available or this language may not be supported.

Parameters

srcEncoding
Type: System.Text::Encoding
The encoding format of bytes.
dstEncoding
Type: System.Text::Encoding
The target encoding format.
bytes
Type: array<System::Byte>
The bytes to convert.

Return Value

Type: array<System::Byte>
A byte array that contains the results of converting bytes from srcEncoding to dstEncoding.

ExceptionCondition
ArgumentNullException

srcEncoding is nullptr.

-or-

dstEncoding is nullptr.

-or-

bytes is nullptr.

DecoderFallbackException

A fallback occurred (see Understanding Encodings for complete explanation).

EncoderFallbackException

A fallback occurred (see Understanding Encodings for complete explanation).

The following code example converts a string from one encoding to another.

No code example is currently available or this language may not be supported.

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Xbox 360, Windows Phone OS 7.0

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

Community Additions

ADD
Show: