Jetzt wird es komisch: Ich habe mal die urspüngliche
VCL Version getestet, diese ist schneller als die Konsolenversion ust exakt gleich schnell wie die grafische C#-Version (16,8s) und unter 64Bit 17s
Delphi-Quellcode:
var li,lj,st,et:integer;
begin
li := 0;
lj := 0;
st := GetTickCount;
for li:=0 to 50000 do begin
for lj:=0 to 1000000 do begin
end;
if (li mod 1000=0) then begin
button1.caption := inttostr(li);
button1.Update();
end;
end;
Caption := IntToStr(GetTickCount -st);
end;