2
使用TULargeInteger和新編譯器10.2進行鑄造缺少attribut LowPart和HighPart。在delphi 10.2中使用TULargeInteger進行鑄造東京與以前的版本不同
uses Winapi.Windows;
function RetLargeInt: Int64;
var
ALow: DWORD;
begin
{Do Something
With ALow
}
TULargeInteger(Result).LowPart := ALow; {Missing 'LowPart'}
end;
procedure AProc;
var
ALocalInt: Int64;
begin
ALocalInt := RetLargeInt;
{Do Something}
end;
或者使用Int64Rec –