Is there a difference between Move and CopyMemory in Delphi(specifically versions 2007 and up)?
If so, what are the differences?
Have a look at windows.pas in Delphi:
procedure CopyMemory(Destination: Pointer; Source: Pointer; Length: DWORD);
begin
Move(Source^, Destination^, Length);
end;
Does that answer your question? :>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With