- 4.67.2.53. -
Table of Contents
4. Standard Units
4.67. System - Built-in routines
4.67.2. System Unit Procedures and Functions
4.67.2.53. Move procedure
4.67.2.53. Move procedure
Targets: MS-DOS, OS/2, Win32
System Unit
Copies bytes from Source to Dest.
Declaration:
procedure Move(var Source, Dest; Count: Longint);
Remarks:
Copies a specified number of contiguous bytes (Count)
from a source range to a destination range. No range-checking is performed.
Whenever possible, use SizeOf
to determine the count.
Note that Count is not limited to 65,535 (64K) bytes.
- 4.67.2.53. -