Thema
:
Integer lesen, wie in C
Einzelnen Beitrag anzeigen
Dax
(Gast)
n/a Beiträge
#
3
Re: Integer lesen, wie in C
29. Mai 2005, 20:13
In Delphi ginge das zum Bleistift so
markieren
Delphi-Quellcode:
type
TByteFromInt =
record
case
Byte
of
0: (Int: Integer);
1: (Bytes:
array
[1..4]
of
Byte);
end
;
Zitat