System.SysUtils.TBytes
C++
typedef System::DynamicArray<System::Byte> TBytes;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
typedef | public | System.SysUtils.hpp | System.SysUtils | System.SysUtils |
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 Examples