SysUtils.TBytes
From RAD Studio VCL Reference
Contents |
Delphi Information
From SysUtils.pas
TBytes = array of Byte;
Unit: SysUtils
Type: array
C++ Information
From SysUtils.hpp
typedef System::DynamicArray<unsigned char> TBytes;
Unit: SysUtils
Type: typedef
Description
TBytes declares an array of Bytes.
The TBytes type declares a dynamic array of Bytes.
Note: Dynamic arrays have no intrinsic size. SetLength is used to allocate storage for the defined array size desired. Dynamic arrays are always integer-indexed, starting at 0.
Code Samples