TEncoding.Convert

Convert an array of bytes from one encoding to another

Declaration

Source position: sysencodingh.inc line 61

public 
  class function Convert(Source: TEncoding; Destination: TEncoding; 
                        const Bytes: TBytes) : TBytes;  Overload;
  class function Convert(Source: TEncoding; Destination: TEncoding; 
                        const Bytes: TBytes; StartIndex: Integer; 
                        Count: Integer) : TBytes;  Overload;

Description

Convert will convert the bytes in Bytes from encoding Source to encoding Destination and returns the converted bytes as an array. If StartIndex and Count are specified, the conversion starts at (zero-based) index StartIndex, and only Count bytes will be converted.

See also

Name Description
TEncoding.GetBytes
TEncoding.GetChars