Registriert seit: 20. Jan 2006
Ort: Lübbecke
11.441 Beiträge
Delphi 12 Athens
|
AW: TObjectList Sortieren
1. Mär 2019, 17:57
Warum so kompliziert mit SortInt?
Delphi-Quellcode:
function TAnfrage_Sort.Compare(const Left, Right: TAnfrageItem): Integer;
begin
Result := CompareValue(Left.SortGruppe, Right.SortGruppe);
if Result = 0 then
Result := CompareValue(Left.Sort, Right.Sort);
end;
Das CompareValue findest du in System.Math.
|