Thema
:
Delphi
Array of Byte in String umwandeln
Einzelnen Beitrag anzeigen
marabu
Registriert seit: 6. Apr 2005
10.109 Beiträge
#
6
Re: Array of Byte in String umwandeln
16. Jul 2007, 09:40
Ciao amici.
markieren
Delphi-Quellcode:
var
a:
array
of
Byte;
i: Integer;
begin
SetLength(a, 3);
for
i := Low(a)
to
High(a)
do
a[i] := 65 + i;
s :=
String
(a);
end
;
Cari saluti
Zitat
marabu
Öffentliches Profil ansehen
Mehr Beiträge von marabu finden