System.SysUtils.TBytes

From RAD Studio API Documentation
Jump to: navigation, search

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