System.SysUtils.TByteHelper.ToHexString
Delphi
function ToHexString: string; overload; inline;
function ToHexString(const MinDigits: Integer): string; overload; inline;
Propriétés
Type | Visibilité | Source | Unité | Parent |
---|---|---|---|---|
function | public | System.SysUtils.pas | System.SysUtils | TByteHelper |
Description
Convertit Byte en une chaîne hexadécimale.
Cette méthode est surchargée :
- La première méthode surchargée ToHexString convertit ce nombre Byte en une représentation chaîne hexadécimale à 2 chiffres hexadécimaux.
- La seconde méthode surchargée ToHexString convertit ce nombre Byte en une chaîne hexadécimale avec un nombre minimal de chiffres hexadécimaux représenté par le paramètre
MinDigits
.
Remarque: Pour obtenir des détails sur la façon dont la conversion est traitée, voir la description de IntToHex.