I use quite a lot of these in my code, and from time to time need to convert
them to striings, so I use IntToStr in SysUtils.
I've noticed that there are two versions (overloaded) in sysUtils:
{ IntToStr converts the given value to its decimal string representation. }
function IntToStr(Value: Integer): string; overload;
function IntToStr(Value: Int64): string; overload;
and their implementation is
function IntToStr(Value: Integer): string;
begin
FmtStr(Result, '%d', [Value]);
end;
function IntToStr(Value: Int64): string;
begin
FmtStr(Result, '%d', [Value]);
end;
Am I missing something here?, they seem to be identical.
Confused Trevor
---------------------------------------------------------------------------
New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
Website: http://www.delphi.org.nz
To UnSub, send email to: [EMAIL PROTECTED]
with body of "unsubscribe delphi"
Web Archive at: http://www.mail-archive.com/delphi%40delphi.org.nz/