Encoding.Convert Method (Encoding, Encoding, Byte[], Int32, Int32)
Assembly: mscorlib (in mscorlib.dll)
public: static array<unsigned char>^ Convert ( Encoding^ srcEncoding, Encoding^ dstEncoding, array<unsigned char>^ bytes, int index, int count )
public static byte[] Convert ( Encoding srcEncoding, Encoding dstEncoding, byte[] bytes, int index, int count )
public static function Convert ( srcEncoding : Encoding, dstEncoding : Encoding, bytes : byte[], index : int, count : int ) : byte[]
Not applicable.
Parameters
- srcEncoding
The encoding of the source array, bytes.
- dstEncoding
The encoding of the output array.
- bytes
The array of bytes to convert.
- index
The index of the first element of bytes to convert.
- count
The number of bytes to convert.
Return Value
An array of type Byte containing the result of converting a range of bytes in bytes from srcEncoding to dstEncoding.| Exception type | Condition |
|---|---|
| srcEncoding is a null reference (Nothing in Visual Basic). -or- dstEncoding is a null reference (Nothing in Visual Basic). -or- bytes is a null reference (Nothing in Visual Basic). | |
| index and count do not specify a valid range in the byte array. | |
| A fallback occurred (see Understanding Encodings for complete explanation) -and- srcEncoding. DecoderFallback is set to DecoderExceptionFallback. | |
| A fallback occurred (see Understanding Encodings for complete explanation) -and- dstEncoding. EncoderFallback is set to EncoderExceptionFallback. |
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.