Data.DBXPlatform.TDBXPlatform.CopyByteArray
Delphi
class procedure CopyByteArray(const Source: TArray<Byte>; SourceOffset: NativeInt; const Dest: TArray<Byte>; DestOffset: NativeInt; Count: NativeInt); static; inline;
C++
static void __fastcall CopyByteArray(const System::DynamicArray<System::Byte> Source, System::NativeInt SourceOffset, const System::DynamicArray<System::Byte> Dest, System::NativeInt DestOffset, System::NativeInt Count);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
public | Data.DBXPlatform.pas Data.DBXPlatform.hpp |
Data.DBXPlatform | TDBXPlatform |
Description
Copies elements of an array of TBytes.
The CopyByteArray static method copies Count elements from Source, at SourceOffset to Dest, at DestOffset.
Source and Dest are of type TBytes.