Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.327 Beiträge
Delphi 12 Athens
|
AW: Datentypen von String zu Byte und wieder zurück
3. Mai 2017, 10:39
Delphi-Quellcode:
for i := 0 to 31 do
begin
Result := Result shl 1;
B := B shl 1;
Result := Result or (B shr 31);
Result := Result shl 1;
A := A shl 1;
Result := Result or (A shr 31);
end;
Ein Therapeut entspricht 1024 Gigapeut.
|